From d23e0cac52c9ccc215c7c2d8e62ea29c6f7620bf Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Thu, 3 Dec 2020 06:47:55 +0100 Subject: [PATCH] Fix Bottle.thing_char on emptiness command. --- plomrogue/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plomrogue/commands.py b/plomrogue/commands.py index dea4b63..7a05ae8 100644 --- a/plomrogue/commands.py +++ b/plomrogue/commands.py @@ -312,5 +312,5 @@ def cmd_THING_BOTTLE_EMPTY(game, thing_id): raise GameError('thing of ID %s not found' % thing_id) if not t.type_ == 'Bottle': raise GameError('thing of ID %s not bottle' % thing_id) - t.full = False + t.empty() cmd_THING_BOTTLE_EMPTY.argtypes = 'int:pos' -- 2.30.2