X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=rogue_chat.py;h=f37477b3c3f28b6c9fdb26ec1d8bbb6d1d3db789;hb=2df42b53c56bd32dc445df532b4c42c53d97b767;hp=b49f07c23d448fe9aa16f427198ef30188588ef9;hpb=8aad5c25535b1570ff7a59c170cfec677b9f74c7;p=plomrogue2 diff --git a/rogue_chat.py b/rogue_chat.py index b49f07c..f37477b 100755 --- a/rogue_chat.py +++ b/rogue_chat.py @@ -33,7 +33,7 @@ from plomrogue.things import (Thing_Player, Thing_Item, Thing_ItemSpawner, Thing_PsychedelicSpawner, Thing_DoorKey, Thing_Crate, Thing_CrateSpawner, Thing_Stimulant, Thing_StimulantSpawner, Thing_Sign, - Thing_SignSpawner) + Thing_SignSpawner, Thing_Chair, Thing_ChairSpawner) from plomrogue.config import config game = Game(config['savefile']) @@ -120,6 +120,8 @@ game.register_thing_type(Thing_Stimulant) game.register_thing_type(Thing_StimulantSpawner) game.register_thing_type(Thing_Sign) game.register_thing_type(Thing_SignSpawner) +game.register_thing_type(Thing_Chair) +game.register_thing_type(Thing_ChairSpawner) game.read_savefile() game.io.start_loop() for port in config['servers']: