aboutsummaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-09-21 21:38:33 +0200
committermetamuffin <metamuffin@disroot.org>2025-09-21 21:38:35 +0200
commite1f6d55b1a26458d132ba58a72c0e0def1bc121e (patch)
tree4dce0abe240954cdd15c11e43422e2045b156ece /client
parentcdc7b759a1d4e44493378c22d43217d50c40173a (diff)
downloadhurrycurry-e1f6d55b1a26458d132ba58a72c0e0def1bc121e.tar
hurrycurry-e1f6d55b1a26458d132ba58a72c0e0def1bc121e.tar.bz2
hurrycurry-e1f6d55b1a26458d132ba58a72c0e0def1bc121e.tar.zst
rename cutting and rolling board everywhere
Diffstat (limited to 'client')
-rw-r--r--client/gui/menus/main/background.gd2
-rw-r--r--client/map/tile_factory.gd2
2 files changed, 2 insertions, 2 deletions
diff --git a/client/gui/menus/main/background.gd b/client/gui/menus/main/background.gd
index 4abb84b4..3964dc9b 100644
--- a/client/gui/menus/main/background.gd
+++ b/client/gui/menus/main/background.gd
@@ -16,7 +16,7 @@
extends Node3D
const CRATES = ["tomato-crate", "steak-crate", "cheese-crate", "lettuce-crate", "flour-crate", "coconut-crate"]
-const TOOLS = ["stove", "stove", "stove", "sink", "cuttingboard", "sink", "cuttingboard", "oven", "freezer"]
+const TOOLS = ["stove", "stove", "stove", "sink", "cutting-board", "sink", "cutting-board", "oven", "freezer"]
@onready var environment: WorldEnvironment = $Environment
@onready var map: Map = $Map
diff --git a/client/map/tile_factory.gd b/client/map/tile_factory.gd
index b1dc8993..4049ea47 100644
--- a/client/map/tile_factory.gd
+++ b/client/map/tile_factory.gd
@@ -45,7 +45,7 @@ func produce(tile_name: String, position: Vector2i, neighbors: Array) -> Tile:
"conveyor": return Conveyor.new(ctx)
"counter-window": return CounterWindow.new(ctx)
"counter": return CounterBase.new(ctx)
- "cuttingboard": return CuttingBoard.new(ctx)
+ "cutting-board": return CuttingBoard.new(ctx)
"door": return Door.new(ctx)
"fence": return Fence.new(ctx)
"floor": return Floor.new(ctx)