aboutsummaryrefslogtreecommitdiff
path: root/client/map
diff options
context:
space:
mode:
Diffstat (limited to 'client/map')
-rw-r--r--client/map/auto_setup/environment_setup.gd2
-rw-r--r--client/map/auto_setup/light_setup.gd2
-rw-r--r--client/map/item_factory.gd11
-rw-r--r--client/map/items/bread.gd10
-rw-r--r--client/map/items/bread_slice.gd10
-rw-r--r--client/map/items/bread_slice_plate.gd10
-rw-r--r--client/map/items/bread_slice_sliced_tomato_plate.gd10
-rw-r--r--client/map/items/bread_slice_sliced_tomato_steak_plate.gd10
-rw-r--r--client/map/items/bread_slice_steak_plate.gd10
-rw-r--r--client/map/items/burned.gd10
-rw-r--r--client/map/items/burned_pot.gd10
-rw-r--r--client/map/items/dirty_plate.gd10
-rw-r--r--client/map/items/dough.gd10
-rw-r--r--client/map/items/dough_food_processor.gd10
-rw-r--r--client/map/items/flour.gd10
-rw-r--r--client/map/items/flour_food_processor.gd10
-rw-r--r--client/map/items/food_processor.gd10
-rw-r--r--client/map/items/food_processor_content.gd10
-rw-r--r--client/map/items/generic_item.gd10
-rw-r--r--client/map/items/item.gd12
-rw-r--r--client/map/items/leek-pot.gd10
-rw-r--r--client/map/items/leek.gd10
-rw-r--r--client/map/items/leek_tomato_juice_pot.gd10
-rw-r--r--client/map/items/plate.gd11
-rw-r--r--client/map/items/plate_fill.gd10
-rw-r--r--client/map/items/pot.gd10
-rw-r--r--client/map/items/pot_fill.gd10
-rw-r--r--client/map/items/raw_steak.gd10
-rw-r--r--client/map/items/raw_steak_pot.gd10
-rw-r--r--client/map/items/sliced_tomato.gd10
-rw-r--r--client/map/items/sliced_tomato_plate.gd10
-rw-r--r--client/map/items/sliced_tomato_steak_plate.gd10
-rw-r--r--client/map/items/steak_plate.gd10
-rw-r--r--client/map/items/steak_pot.gd10
-rw-r--r--client/map/items/tomato.gd10
-rw-r--r--client/map/items/tomato_food_processor.gd10
-rw-r--r--client/map/items/tomato_juice_food_processor.gd10
-rw-r--r--client/map/items/tomato_juice_pot.gd10
-rw-r--r--client/map/items/tomato_soup_plate.gd10
-rw-r--r--client/map/items/tomato_soup_pot.gd10
-rw-r--r--client/map/map.gd17
-rw-r--r--client/map/progress.gd11
-rw-r--r--client/map/progress.gdshader12
-rw-r--r--client/map/tile_factory.gd10
-rw-r--r--client/map/tiles/chair.gd11
-rw-r--r--client/map/tiles/counter.gd3
-rw-r--r--client/map/tiles/counter_base.gd11
-rw-r--r--client/map/tiles/counter_window.gd10
-rw-r--r--client/map/tiles/crate.gd12
-rw-r--r--client/map/tiles/cutting_board.gd11
-rw-r--r--client/map/tiles/door.gd11
-rw-r--r--client/map/tiles/exterior_tree.gd10
-rw-r--r--client/map/tiles/fence.gd2
-rw-r--r--client/map/tiles/floor.gd11
-rw-r--r--client/map/tiles/flour_counter.gd11
-rw-r--r--client/map/tiles/full_tile.gd11
-rw-r--r--client/map/tiles/generic_tile.gd11
-rw-r--r--client/map/tiles/grass.gd3
-rw-r--r--client/map/tiles/leek_crate.gd10
-rw-r--r--client/map/tiles/oven.gd11
-rw-r--r--client/map/tiles/oven_model.gd9
-rw-r--r--client/map/tiles/path.gd2
-rw-r--r--client/map/tiles/raw_steak_crate.gd11
-rw-r--r--client/map/tiles/sink.gd11
-rw-r--r--client/map/tiles/sink_bubbles.gd15
-rw-r--r--client/map/tiles/stove.gd11
-rw-r--r--client/map/tiles/table.gd11
-rw-r--r--client/map/tiles/tile.gd10
-rw-r--r--client/map/tiles/tomato_crate.gd11
-rw-r--r--client/map/tiles/trash.gd11
-rw-r--r--client/map/tiles/wall.gd11
-rw-r--r--client/map/tiles/wall_tile.gd11
-rw-r--r--client/map/tiles/window.gd11
73 files changed, 389 insertions, 333 deletions
diff --git a/client/map/auto_setup/environment_setup.gd b/client/map/auto_setup/environment_setup.gd
index f163588b..323a7f04 100644
--- a/client/map/auto_setup/environment_setup.gd
+++ b/client/map/auto_setup/environment_setup.gd
@@ -1,4 +1,4 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 tpart
#
# This program is free software: you can redistribute it and/or modify
diff --git a/client/map/auto_setup/light_setup.gd b/client/map/auto_setup/light_setup.gd
index c74fb5ee..7fb50c14 100644
--- a/client/map/auto_setup/light_setup.gd
+++ b/client/map/auto_setup/light_setup.gd
@@ -1,4 +1,4 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 tpart
#
# This program is free software: you can redistribute it and/or modify
diff --git a/client/map/item_factory.gd b/client/map/item_factory.gd
index d3da32ef..833e61af 100644
--- a/client/map/item_factory.gd
+++ b/client/map/item_factory.gd
@@ -1,18 +1,19 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+# Copyright 2024 metamuffin
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name ItemFactory
extends Object
diff --git a/client/map/items/bread.gd b/client/map/items/bread.gd
index db277a72..b049b450 100644
--- a/client/map/items/bread.gd
+++ b/client/map/items/bread.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name Bread
extends Item
diff --git a/client/map/items/bread_slice.gd b/client/map/items/bread_slice.gd
index 0449689a..f74b0058 100644
--- a/client/map/items/bread_slice.gd
+++ b/client/map/items/bread_slice.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name BreadSlice
extends Item
diff --git a/client/map/items/bread_slice_plate.gd b/client/map/items/bread_slice_plate.gd
index 54a393bc..f222b7c2 100644
--- a/client/map/items/bread_slice_plate.gd
+++ b/client/map/items/bread_slice_plate.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name BreadSlicePlate
extends Plate
diff --git a/client/map/items/bread_slice_sliced_tomato_plate.gd b/client/map/items/bread_slice_sliced_tomato_plate.gd
index 63e74c21..4dc59897 100644
--- a/client/map/items/bread_slice_sliced_tomato_plate.gd
+++ b/client/map/items/bread_slice_sliced_tomato_plate.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name BreadSliceSlicedTomatoPlate
extends BreadSlicePlate
diff --git a/client/map/items/bread_slice_sliced_tomato_steak_plate.gd b/client/map/items/bread_slice_sliced_tomato_steak_plate.gd
index 157c02e9..963c2892 100644
--- a/client/map/items/bread_slice_sliced_tomato_steak_plate.gd
+++ b/client/map/items/bread_slice_sliced_tomato_steak_plate.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name BreadSliceSlicedTomatoSteakPlate
extends BreadSliceSteakPlate
diff --git a/client/map/items/bread_slice_steak_plate.gd b/client/map/items/bread_slice_steak_plate.gd
index 902cdf44..d6bca18f 100644
--- a/client/map/items/bread_slice_steak_plate.gd
+++ b/client/map/items/bread_slice_steak_plate.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name BreadSliceSteakPlate
extends BreadSlicePlate
diff --git a/client/map/items/burned.gd b/client/map/items/burned.gd
index ad7b4505..138d6c93 100644
--- a/client/map/items/burned.gd
+++ b/client/map/items/burned.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name Burned
extends Item
diff --git a/client/map/items/burned_pot.gd b/client/map/items/burned_pot.gd
index d38cae6e..8a77d08d 100644
--- a/client/map/items/burned_pot.gd
+++ b/client/map/items/burned_pot.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name BurnedPot
extends PotFill
diff --git a/client/map/items/dirty_plate.gd b/client/map/items/dirty_plate.gd
index ace34452..859d6b35 100644
--- a/client/map/items/dirty_plate.gd
+++ b/client/map/items/dirty_plate.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name DirtyPlate
extends Plate
diff --git a/client/map/items/dough.gd b/client/map/items/dough.gd
index adcfa5d5..108016ee 100644
--- a/client/map/items/dough.gd
+++ b/client/map/items/dough.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name Dough
extends Item
diff --git a/client/map/items/dough_food_processor.gd b/client/map/items/dough_food_processor.gd
index 2d9cd8b7..bb8629e4 100644
--- a/client/map/items/dough_food_processor.gd
+++ b/client/map/items/dough_food_processor.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name DoughFoodProcessor
extends FoodProcessorContent
diff --git a/client/map/items/flour.gd b/client/map/items/flour.gd
index 1cb52ee8..95357414 100644
--- a/client/map/items/flour.gd
+++ b/client/map/items/flour.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name Flour
extends Item
diff --git a/client/map/items/flour_food_processor.gd b/client/map/items/flour_food_processor.gd
index 24ad976c..dadd4b65 100644
--- a/client/map/items/flour_food_processor.gd
+++ b/client/map/items/flour_food_processor.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name FlourFoodProcessor
extends FoodProcessor
diff --git a/client/map/items/food_processor.gd b/client/map/items/food_processor.gd
index 6a04da00..66d78168 100644
--- a/client/map/items/food_processor.gd
+++ b/client/map/items/food_processor.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name FoodProcessor
extends Item
diff --git a/client/map/items/food_processor_content.gd b/client/map/items/food_processor_content.gd
index ee8edc1c..a8ba1079 100644
--- a/client/map/items/food_processor_content.gd
+++ b/client/map/items/food_processor_content.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name FoodProcessorContent
extends FoodProcessor
diff --git a/client/map/items/generic_item.gd b/client/map/items/generic_item.gd
index d1cbc41a..9c3d3931 100644
--- a/client/map/items/generic_item.gd
+++ b/client/map/items/generic_item.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name GenericItem
extends Item
diff --git a/client/map/items/item.gd b/client/map/items/item.gd
index 6433d5db..b657e14f 100644
--- a/client/map/items/item.gd
+++ b/client/map/items/item.gd
@@ -1,18 +1,20 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+# Copyright 2024 tpart
+# Copyright 2024 metamuffin
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name Item
extends Node3D
diff --git a/client/map/items/leek-pot.gd b/client/map/items/leek-pot.gd
index 3b16d3cf..3e5b7def 100644
--- a/client/map/items/leek-pot.gd
+++ b/client/map/items/leek-pot.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name LeekPot
extends Pot
diff --git a/client/map/items/leek.gd b/client/map/items/leek.gd
index fd74bd68..8503dd41 100644
--- a/client/map/items/leek.gd
+++ b/client/map/items/leek.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name Leek
extends Item
diff --git a/client/map/items/leek_tomato_juice_pot.gd b/client/map/items/leek_tomato_juice_pot.gd
index fc6cb465..26a614b5 100644
--- a/client/map/items/leek_tomato_juice_pot.gd
+++ b/client/map/items/leek_tomato_juice_pot.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name LeekTomatoJuicePot
extends TomatoJuicePot
diff --git a/client/map/items/plate.gd b/client/map/items/plate.gd
index 73ffc5d9..61e097b8 100644
--- a/client/map/items/plate.gd
+++ b/client/map/items/plate.gd
@@ -1,18 +1,19 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+# Copyright 2024 tpart
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name Plate
extends Item
diff --git a/client/map/items/plate_fill.gd b/client/map/items/plate_fill.gd
index ead71f11..be5a320c 100644
--- a/client/map/items/plate_fill.gd
+++ b/client/map/items/plate_fill.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name PlateFill
extends Plate
diff --git a/client/map/items/pot.gd b/client/map/items/pot.gd
index e802b7e9..4fb065cd 100644
--- a/client/map/items/pot.gd
+++ b/client/map/items/pot.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name Pot
extends Item
diff --git a/client/map/items/pot_fill.gd b/client/map/items/pot_fill.gd
index bd262c63..f5c8ad44 100644
--- a/client/map/items/pot_fill.gd
+++ b/client/map/items/pot_fill.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name PotFill
extends Pot
diff --git a/client/map/items/raw_steak.gd b/client/map/items/raw_steak.gd
index 328e4e92..bd4cf1c4 100644
--- a/client/map/items/raw_steak.gd
+++ b/client/map/items/raw_steak.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name RawSteak
extends Item
diff --git a/client/map/items/raw_steak_pot.gd b/client/map/items/raw_steak_pot.gd
index 437ba5de..6c3d4717 100644
--- a/client/map/items/raw_steak_pot.gd
+++ b/client/map/items/raw_steak_pot.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name RawSteakPot
extends Pot
diff --git a/client/map/items/sliced_tomato.gd b/client/map/items/sliced_tomato.gd
index af5e53e2..5b076335 100644
--- a/client/map/items/sliced_tomato.gd
+++ b/client/map/items/sliced_tomato.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name SlicedTomato
extends Item
diff --git a/client/map/items/sliced_tomato_plate.gd b/client/map/items/sliced_tomato_plate.gd
index e8ea2d7b..061a4d1f 100644
--- a/client/map/items/sliced_tomato_plate.gd
+++ b/client/map/items/sliced_tomato_plate.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name SlicedTomatoPlate
extends Plate
diff --git a/client/map/items/sliced_tomato_steak_plate.gd b/client/map/items/sliced_tomato_steak_plate.gd
index 8dbb9c71..3d8070f0 100644
--- a/client/map/items/sliced_tomato_steak_plate.gd
+++ b/client/map/items/sliced_tomato_steak_plate.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name SlicedTomatoSteakPlate
extends SteakPlate
diff --git a/client/map/items/steak_plate.gd b/client/map/items/steak_plate.gd
index 454400ee..6ff91420 100644
--- a/client/map/items/steak_plate.gd
+++ b/client/map/items/steak_plate.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name SteakPlate
extends Plate
diff --git a/client/map/items/steak_pot.gd b/client/map/items/steak_pot.gd
index fd755e62..32dbea5c 100644
--- a/client/map/items/steak_pot.gd
+++ b/client/map/items/steak_pot.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name SteakPot
extends Pot
diff --git a/client/map/items/tomato.gd b/client/map/items/tomato.gd
index 43e2e64d..97cd668c 100644
--- a/client/map/items/tomato.gd
+++ b/client/map/items/tomato.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name Tomato
extends Item
diff --git a/client/map/items/tomato_food_processor.gd b/client/map/items/tomato_food_processor.gd
index 4003e246..296a996c 100644
--- a/client/map/items/tomato_food_processor.gd
+++ b/client/map/items/tomato_food_processor.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name TomatoFoodProcessor
extends FoodProcessor
diff --git a/client/map/items/tomato_juice_food_processor.gd b/client/map/items/tomato_juice_food_processor.gd
index d1fe9c7c..d6767786 100644
--- a/client/map/items/tomato_juice_food_processor.gd
+++ b/client/map/items/tomato_juice_food_processor.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name TomatoJuiceFoodProcessor
extends FoodProcessorContent
diff --git a/client/map/items/tomato_juice_pot.gd b/client/map/items/tomato_juice_pot.gd
index a27eeb1a..7219b51a 100644
--- a/client/map/items/tomato_juice_pot.gd
+++ b/client/map/items/tomato_juice_pot.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name TomatoJuicePot
extends PotFill
diff --git a/client/map/items/tomato_soup_plate.gd b/client/map/items/tomato_soup_plate.gd
index 91b396c4..c5ec9312 100644
--- a/client/map/items/tomato_soup_plate.gd
+++ b/client/map/items/tomato_soup_plate.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name TomatoSoupPlate
extends PlateFill
diff --git a/client/map/items/tomato_soup_pot.gd b/client/map/items/tomato_soup_pot.gd
index 1194fae3..c77c5dc3 100644
--- a/client/map/items/tomato_soup_pot.gd
+++ b/client/map/items/tomato_soup_pot.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name TomatoSoupPot
extends PotFill
diff --git a/client/map/map.gd b/client/map/map.gd
index 4c7136c7..e0fc091e 100644
--- a/client/map/map.gd
+++ b/client/map/map.gd
@@ -1,3 +1,20 @@
+# Hurry Curry! - a game about cooking
+# Copyright 2024 nokoe
+# Copyright 2024 metamuffin
+# Copyright 2024 tpart
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, version 3 of the License only.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <https://www.gnu.org/licenses/>.
+#
class_name Map
extends Node3D
diff --git a/client/map/progress.gd b/client/map/progress.gd
index dd855a36..52415b95 100644
--- a/client/map/progress.gd
+++ b/client/map/progress.gd
@@ -1,18 +1,19 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
+# Copyright 2024 metamuffin
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name ProgressBar3D
extends MeshInstance3D
diff --git a/client/map/progress.gdshader b/client/map/progress.gdshader
index 9567bcac..2ce33dd6 100644
--- a/client/map/progress.gdshader
+++ b/client/map/progress.gdshader
@@ -1,20 +1,20 @@
/*
- Undercooked - a game about cooking
- Copyright 2024 nokoe
+ Hurry Curry! - a game about cooking
+ Copyright 2024 metamuffin
Copyright 2024 tpart
-
+
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, version 3 of the License only.
-
+
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
-
+
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
-
+
*/
shader_type spatial;
render_mode unshaded;
diff --git a/client/map/tile_factory.gd b/client/map/tile_factory.gd
index c950cd1f..a5e7bf05 100644
--- a/client/map/tile_factory.gd
+++ b/client/map/tile_factory.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name TileFactory
extends Object
diff --git a/client/map/tiles/chair.gd b/client/map/tiles/chair.gd
index b7014028..bf2fce16 100644
--- a/client/map/tiles/chair.gd
+++ b/client/map/tiles/chair.gd
@@ -1,18 +1,19 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
+# Copyright 2024 metamuffin
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name Chair
extends Floor
diff --git a/client/map/tiles/counter.gd b/client/map/tiles/counter.gd
index d511e90d..45be5525 100644
--- a/client/map/tiles/counter.gd
+++ b/client/map/tiles/counter.gd
@@ -1,4 +1,5 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
+# Copyright 2024 metamuffin
# Copyright 2024 nokoe
#
# This program is free software: you can redistribute it and/or modify
diff --git a/client/map/tiles/counter_base.gd b/client/map/tiles/counter_base.gd
index 13c78799..0235268e 100644
--- a/client/map/tiles/counter_base.gd
+++ b/client/map/tiles/counter_base.gd
@@ -1,18 +1,19 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+# Copyright 2024 metamuffin
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name CounterBase
extends Counter
diff --git a/client/map/tiles/counter_window.gd b/client/map/tiles/counter_window.gd
index 233be1fc..5646b112 100644
--- a/client/map/tiles/counter_window.gd
+++ b/client/map/tiles/counter_window.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name CounterWindow
extends WallTile
diff --git a/client/map/tiles/crate.gd b/client/map/tiles/crate.gd
index 21fae60b..63ceed75 100644
--- a/client/map/tiles/crate.gd
+++ b/client/map/tiles/crate.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
-# Copyright 2024 nokoe
-#
+# Hurry Curry! - a game about cooking
+# Copyright 2024 metamuffin
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name Crate
extends Counter
diff --git a/client/map/tiles/cutting_board.gd b/client/map/tiles/cutting_board.gd
index 280235e8..66968313 100644
--- a/client/map/tiles/cutting_board.gd
+++ b/client/map/tiles/cutting_board.gd
@@ -1,18 +1,19 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+# Copyright 2024 metamuffin
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name CuttingBoard
extends CounterBase
diff --git a/client/map/tiles/door.gd b/client/map/tiles/door.gd
index ab778158..28506852 100644
--- a/client/map/tiles/door.gd
+++ b/client/map/tiles/door.gd
@@ -1,18 +1,19 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+# Copyright 2024 metamuffin
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name Door
extends WallTile
diff --git a/client/map/tiles/exterior_tree.gd b/client/map/tiles/exterior_tree.gd
index d1e0b6b3..41e35693 100644
--- a/client/map/tiles/exterior_tree.gd
+++ b/client/map/tiles/exterior_tree.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name ExteriorTree
extends Grass
diff --git a/client/map/tiles/fence.gd b/client/map/tiles/fence.gd
index 61383959..f74a992f 100644
--- a/client/map/tiles/fence.gd
+++ b/client/map/tiles/fence.gd
@@ -1,4 +1,4 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
#
# This program is free software: you can redistribute it and/or modify
diff --git a/client/map/tiles/floor.gd b/client/map/tiles/floor.gd
index 37e13686..a8b9e8f7 100644
--- a/client/map/tiles/floor.gd
+++ b/client/map/tiles/floor.gd
@@ -1,18 +1,19 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+# Copyright 2024 metamuffin
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name Floor
extends Tile
diff --git a/client/map/tiles/flour_counter.gd b/client/map/tiles/flour_counter.gd
index a767f2a9..fa8a1bbc 100644
--- a/client/map/tiles/flour_counter.gd
+++ b/client/map/tiles/flour_counter.gd
@@ -1,18 +1,19 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+# Copyright 2024 metamuffin
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name FlourCounter
extends CounterBase
diff --git a/client/map/tiles/full_tile.gd b/client/map/tiles/full_tile.gd
index 3155913e..f83ba2b5 100644
--- a/client/map/tiles/full_tile.gd
+++ b/client/map/tiles/full_tile.gd
@@ -1,18 +1,19 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
+# Copyright 2024 metamuffin
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name FullTile
extends Floor
diff --git a/client/map/tiles/generic_tile.gd b/client/map/tiles/generic_tile.gd
index 48e82dee..5cbc7820 100644
--- a/client/map/tiles/generic_tile.gd
+++ b/client/map/tiles/generic_tile.gd
@@ -1,18 +1,19 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+# Copyright 2024 metamuffin
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name GenericTile
extends Floor
diff --git a/client/map/tiles/grass.gd b/client/map/tiles/grass.gd
index 1c0dd844..b33642a3 100644
--- a/client/map/tiles/grass.gd
+++ b/client/map/tiles/grass.gd
@@ -1,6 +1,5 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-# Copyright 2024 tpart
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/client/map/tiles/leek_crate.gd b/client/map/tiles/leek_crate.gd
index f2a76416..a025516b 100644
--- a/client/map/tiles/leek_crate.gd
+++ b/client/map/tiles/leek_crate.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name LeekCrate
extends Crate
diff --git a/client/map/tiles/oven.gd b/client/map/tiles/oven.gd
index 41a3fe39..c0cf7196 100644
--- a/client/map/tiles/oven.gd
+++ b/client/map/tiles/oven.gd
@@ -1,18 +1,19 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+# Copyright 2024 metamuffin
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name Oven
extends Counter
diff --git a/client/map/tiles/oven_model.gd b/client/map/tiles/oven_model.gd
index eaaab1b1..6bcd69c5 100644
--- a/client/map/tiles/oven_model.gd
+++ b/client/map/tiles/oven_model.gd
@@ -1,17 +1,18 @@
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name OvenModel
extends Node3D
diff --git a/client/map/tiles/path.gd b/client/map/tiles/path.gd
index 02240632..65b7e62c 100644
--- a/client/map/tiles/path.gd
+++ b/client/map/tiles/path.gd
@@ -1,4 +1,4 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
#
# This program is free software: you can redistribute it and/or modify
diff --git a/client/map/tiles/raw_steak_crate.gd b/client/map/tiles/raw_steak_crate.gd
index b7057cc3..07a2acdf 100644
--- a/client/map/tiles/raw_steak_crate.gd
+++ b/client/map/tiles/raw_steak_crate.gd
@@ -1,18 +1,19 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+# Copyright 2024 metamuffin
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name RawSteakCrate
extends Crate
diff --git a/client/map/tiles/sink.gd b/client/map/tiles/sink.gd
index a7599b8e..adf1a971 100644
--- a/client/map/tiles/sink.gd
+++ b/client/map/tiles/sink.gd
@@ -1,18 +1,19 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+# Copyright 2024 metamuffin
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name Sink
extends Counter
diff --git a/client/map/tiles/sink_bubbles.gd b/client/map/tiles/sink_bubbles.gd
index 2dbafca8..7afa7f5b 100644
--- a/client/map/tiles/sink_bubbles.gd
+++ b/client/map/tiles/sink_bubbles.gd
@@ -1,3 +1,18 @@
+# Hurry Curry! - a game about cooking
+# Copyright 2024 nokoe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, version 3 of the License only.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <https://www.gnu.org/licenses/>.
+#
class_name SinkBubbles
extends Node3D
diff --git a/client/map/tiles/stove.gd b/client/map/tiles/stove.gd
index e17ced36..65bc9502 100644
--- a/client/map/tiles/stove.gd
+++ b/client/map/tiles/stove.gd
@@ -1,18 +1,19 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+# Copyright 2024 metamuffin
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name Stove
extends Counter
diff --git a/client/map/tiles/table.gd b/client/map/tiles/table.gd
index bf766f0b..6d1b1862 100644
--- a/client/map/tiles/table.gd
+++ b/client/map/tiles/table.gd
@@ -1,18 +1,19 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+# Copyright 2024 metamuffin
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name Table
extends FullTile
diff --git a/client/map/tiles/tile.gd b/client/map/tiles/tile.gd
index 38e425f0..70cecfd8 100644
--- a/client/map/tiles/tile.gd
+++ b/client/map/tiles/tile.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name Tile
extends Node3D
diff --git a/client/map/tiles/tomato_crate.gd b/client/map/tiles/tomato_crate.gd
index 9d5cfbe9..bcfc67d5 100644
--- a/client/map/tiles/tomato_crate.gd
+++ b/client/map/tiles/tomato_crate.gd
@@ -1,18 +1,19 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+# Copyright 2024 metamuffin
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name TomatoCrate
extends Crate
diff --git a/client/map/tiles/trash.gd b/client/map/tiles/trash.gd
index 99947742..a8ba3e6d 100644
--- a/client/map/tiles/trash.gd
+++ b/client/map/tiles/trash.gd
@@ -1,18 +1,19 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+# Copyright 2024 metamuffin
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name Trash
extends Crate
diff --git a/client/map/tiles/wall.gd b/client/map/tiles/wall.gd
index 8be8df20..0a00752d 100644
--- a/client/map/tiles/wall.gd
+++ b/client/map/tiles/wall.gd
@@ -1,18 +1,19 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+# Copyright 2024 metamuffin
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name Wall
extends WallTile
diff --git a/client/map/tiles/wall_tile.gd b/client/map/tiles/wall_tile.gd
index ae3ac9e1..d0d9a422 100644
--- a/client/map/tiles/wall_tile.gd
+++ b/client/map/tiles/wall_tile.gd
@@ -1,18 +1,19 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+# Copyright 2024 metamuffin
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name WallTile
extends FullTile
diff --git a/client/map/tiles/window.gd b/client/map/tiles/window.gd
index b3e7c478..7c46fa56 100644
--- a/client/map/tiles/window.gd
+++ b/client/map/tiles/window.gd
@@ -1,18 +1,19 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
-#
+# Copyright 2024 metamuffin
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name WallWindow
extends WallTile