From aa64ccc21845f2bf168e27402b8d157212bf3435 Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Wed, 16 Dec 2020 22:21:26 +0100
Subject: [PATCH] Extend sitting message with info about weariness mechanic.

---
 plomrogue/tasks.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

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:
-- 
2.30.2