Browse Source

Crouching message

Reddo 5 years ago
parent
commit
f25698c2f7
1 changed files with 6 additions and 0 deletions
  1. 6 0
      app/Elements/Modules/AppearanceHandler.ts

+ 6 - 0
app/Elements/Modules/AppearanceHandler.ts

@@ -102,6 +102,12 @@ module Elements.AppearanceHandler {
         // TODO: Check if has a specific look to it. Optional. Hard to do.
         // Examples: "You are dressed casually like a woman.", "You are wearing formal women's clothing." etc.
 
+
+        // Current Stance
+        if (player.stance == PersonStance.ALLFOURS) {
+            presentation.add(Say.PARAGRAPH_BREAK, "You are currently crouching.");
+        }
+
         await print(presentation);
     }
 }