From 8dd9cc0b2e39561ba7c693c6d7fcc77a25441dd4 Mon Sep 17 00:00:00 2001 From: gregf36665 Date: Wed, 18 Dec 2024 11:17:22 +0000 Subject: [PATCH] Add option to fill cup with water --- .../global/handlers/item/withobject/WaterSourceListener.kt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Server/src/main/content/global/handlers/item/withobject/WaterSourceListener.kt b/Server/src/main/content/global/handlers/item/withobject/WaterSourceListener.kt index b3ee9f8e1..6feffdba5 100644 --- a/Server/src/main/content/global/handlers/item/withobject/WaterSourceListener.kt +++ b/Server/src/main/content/global/handlers/item/withobject/WaterSourceListener.kt @@ -133,6 +133,10 @@ class WaterSourceListener : InteractionListener { KETTLE( inputs = intArrayOf(Items.KETTLE_7688), output = Items.FULL_KETTLE_7690 + ), + CUP( + inputs = intArrayOf(Items.EMPTY_CUP_1980), + output = Items.CUP_OF_WATER_4458 ); companion object