home · contact · privacy
Add button control to web client for mouse players.
[plomrogue2] / plomrogue / things.py
index d1fc7110b8bba8ca32baeeb1105d69b4c43c880b..0a06601e8a3836a77cd05602ff010467c2560e92 100644 (file)
@@ -35,8 +35,14 @@ class Thing(ThingBase):
 
 
 
-class Thing_Stone(Thing):
-    symbol_hint = 'o'
+class Thing_Item(Thing):
+    symbol_hint = 'i'
+
+
+
+class Thing_Furniture(Thing):
+    symbol_hint = 'h'
+
 
 
 class ThingAnimate(Thing):
@@ -107,4 +113,4 @@ class Thing_Player(ThingAnimate):
 
     def __init__(self, *args, **kwargs):
         super().__init__(*args, **kwargs)
-        self.nickname = 'undefined'
+        self.carrying = None