Fix savegame serialization

This commit is contained in:
tobspr 2020-08-30 15:56:30 +02:00
parent b248c4d1f5
commit f667329572
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
import { Component } from "../component";
import { BaseItem } from "../base_item";
import { typeItemSingleton } from "../item_resolver";
import { types } from "../../savegame/serialization";
export class BeltReaderComponent extends Component {
static getId() {
@ -13,7 +14,7 @@ export class BeltReaderComponent extends Component {
static getSchema() {
return {
lastItem: typeItemSingleton,
lastItem: types.nullable(typeItemSingleton),
};
}