Spectator: fix data type

This commit is contained in:
Fabian Dill 2022-02-23 04:02:11 +01:00
parent 534ce179ec
commit 4c64c5ad05
2 changed files with 3 additions and 2 deletions

View File

@ -12,7 +12,7 @@ STATE_ERROR = -1
class Slot(db.Entity):
id = PrimaryKey(int, auto=True)
player_id = Required(int)
player_name = Required(str, 16)
player_name = Required(str)
data = Optional(bytes, lazy=True)
seed = Optional('Seed')
game = Required(str)

View File

@ -4,6 +4,7 @@ import logging
from BaseClasses import Item
from ..AutoWorld import World
from NetUtils import SlotType
class GenericWorld(World):
@ -19,7 +20,7 @@ class GenericWorld(World):
hidden = True
def generate_early(self):
self.world.player_types[self.player] = 0 # mark as spectator
self.world.player_types[self.player] = SlotType.spectator # mark as spectator
def create_item(self, name: str) -> Item:
if name == "Nothing":