home · contact · privacy
Add button control to web client for mouse players.
[plomrogue2] / plomrogue / things.py
index b6fe5e15e5e919483962b87f63fdfa4a99a380e5..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,5 +113,4 @@ class Thing_Player(ThingAnimate):
 
     def __init__(self, *args, **kwargs):
         super().__init__(*args, **kwargs)
-        self.nickname = 'undefined'
         self.carrying = None