From: Christian Heller 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/?p=plomrogue2;a=commitdiff_plain;h=aa64ccc21845f2bf168e27402b8d157212bf3435 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: