home · contact · privacy
Add writable signs.
[plomrogue2] / plomrogue / game.py
index 088db9d739a0eb7854608613758c28ff76cc2f0e..cfc4271935ba7ab2c420ef3cff296f36cdde3f06 100755 (executable)
@@ -306,9 +306,13 @@ class Game(GameBase):
                                                            quote(t.thing_char)), c_id)
                     if hasattr(t, 'installable') and not t.portable:
                         self.io.send('THING_INSTALLED %s' % (t.id_), c_id)
-                    if hasattr(t, 'design'):
+                    if t.type_ == 'Hat':
                         self.io.send('THING_HAT %s %s' % (t.id_,
                                                           quote(t.design)), c_id)
+                    elif hasattr(t, 'design'):
+                        self.io.send('THING_DESIGN %s %s %s'
+                                     % (t.id_, t.design_size, quote(t.design)),
+                                     c_id)
                 for t in [t for t in player.seen_things if t.carrying]:
                     # send this last so all carryable things are already created
                     self.io.send('THING_CARRYING %s %s' % (t.id_, t.carrying.id_),
@@ -560,6 +564,8 @@ class Game(GameBase):
                 elif t.type_ == 'Hat':
                     write(f, 'THING_HAT_DESIGN %s %s' % (t.id_,
                                                          quote(t.design)))
+                elif hasattr(t, 'design'):
+                    write(f, 'GOD_THING_DESIGN %s %s' % (t.id_, quote(t.design)))
                 elif t.type_ == 'MusicPlayer':
                     write(f, 'THING_MUSICPLAYER_SETTINGS %s %s %s %s' %
                           (t.id_, int(t.playing), t.playlist_index, int(t.repeat)))