diff options
author | metamuffin <metamuffin@disroot.org> | 2025-05-30 15:30:54 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-05-30 15:30:54 +0200 |
commit | 961db5a406979eb85166bb04a6d9be4befb43551 (patch) | |
tree | 5912faf9ddddf04084dd6695e8a1ac062f150b05 /server | |
parent | ba085c63d3687fd33c99c87b002a51c95beef7f7 (diff) | |
download | hurrycurry-961db5a406979eb85166bb04a6d9be4befb43551.tar hurrycurry-961db5a406979eb85166bb04a6d9be4befb43551.tar.bz2 hurrycurry-961db5a406979eb85166bb04a6d9be4befb43551.tar.zst |
note down dishwasher bug
Diffstat (limited to 'server')
-rw-r--r-- | server/bot/src/algos/dishwasher.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/bot/src/algos/dishwasher.rs b/server/bot/src/algos/dishwasher.rs index e4a49978..17698524 100644 --- a/server/bot/src/algos/dishwasher.rs +++ b/server/bot/src/algos/dishwasher.rs @@ -99,6 +99,7 @@ impl Context<'_, DishWasher> { self.assert_tile_is_clear(pos)?; } if self.is_hand_item(self.state.dirty_plate.unwrap()) { + // TODO clear sink first but dont "steal" items from others working there if let Some(sink) = self.find_empty_interactable_tile_by_name("sink") { self.interact_with(sink, 2.0)?; } |