From: Christian Heller <c.heller@plomlompom.de>
Date: Wed, 16 Dec 2020 21:21:26 +0000 (+0100)
Subject: Extend sitting message with info about weariness mechanic.
X-Git-Url: https://plomlompom.com/repos/%7B%7Bdb.prefix%7D%7D/static/%7B%7B%20web_path%20%7D%7D/decks/%7B%7Btodo.comment%7D%7D?a=commitdiff_plain;h=aa64ccc21845f2bf168e27402b8d157212bf3435;p=plomrogue2

Extend sitting message with info about weariness mechanic.
---

diff --git a/plomrogue/tasks.py b/plomrogue/tasks.py
index 6ee2731..5449c0c 100644
--- a/plomrogue/tasks.py
+++ b/plomrogue/tasks.py
@@ -67,7 +67,8 @@ class Task_MOVE(Task):
             terrain_type = self.thing.game.terrains[terrain]
             if 'sittable' in terrain_type.tags:
                 self.thing.standing = False
-                self.thing.send_msg('CHAT "You sink into the %s."'
+                self.thing.send_msg('CHAT "You sink into the %s.'
+                                    'Staying here will reduce your weariness."'
                                     % terrain_type.description)
         self.thing.invalidate('fov')
         if self.thing.blocks_light: