From 81f8a92cab870cfa0908be2829ea0d0ed72f2278 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Wed, 16 Dec 2020 10:28:11 +0000 Subject: [PATCH] Only request a bed in the overworld --- game.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.py b/game.py index e6ddcdc..29663a2 100644 --- a/game.py +++ b/game.py @@ -648,7 +648,7 @@ class Game: self.g.job.state = self.g.job.farm_crop reply = 'ok' - if reply: + if reply and self.g.dimension == 'overworld': for i in self.g.inv.values(): if i.item_id in items.BED_IDS: break