aboutsummaryrefslogtreecommitdiff
path: root/client/map/items
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2024-09-16 18:27:02 +0200
committertpart <tpart120@proton.me>2024-09-16 18:27:02 +0200
commitd7e46b853591733cc65ab3e6f474f0f533729d54 (patch)
treecb9f7871671be472089acd9f5dfc898f58b15e02 /client/map/items
parent417cad52aa0b8e8f6ae4217a8de12ef3fcf16358 (diff)
downloadhurrycurry-d7e46b853591733cc65ab3e6f474f0f533729d54.tar
hurrycurry-d7e46b853591733cc65ab3e6f474f0f533729d54.tar.bz2
hurrycurry-d7e46b853591733cc65ab3e6f474f0f533729d54.tar.zst
Tweak sliced height to make burger ingredients more visible
Diffstat (limited to 'client/map/items')
-rw-r--r--client/map/items/sliced_cheese.gd2
-rw-r--r--client/map/items/sliced_lettuce.gd2
-rw-r--r--client/map/items/sliced_tomato.gd2
3 files changed, 3 insertions, 3 deletions
diff --git a/client/map/items/sliced_cheese.gd b/client/map/items/sliced_cheese.gd
index b803ace4..955233f1 100644
--- a/client/map/items/sliced_cheese.gd
+++ b/client/map/items/sliced_cheese.gd
@@ -21,4 +21,4 @@ func _init(owned_by_: Node3D):
base.add_child(load("res://map/items/sliced_cheese.tscn").instantiate())
static func height() -> float:
- return .025
+ return .05
diff --git a/client/map/items/sliced_lettuce.gd b/client/map/items/sliced_lettuce.gd
index f6410b90..fbc7553f 100644
--- a/client/map/items/sliced_lettuce.gd
+++ b/client/map/items/sliced_lettuce.gd
@@ -21,4 +21,4 @@ func _init(owned_by_: Node3D):
base.add_child(load("res://map/items/sliced_lettuce.tscn").instantiate())
static func height() -> float:
- return .025
+ return .05
diff --git a/client/map/items/sliced_tomato.gd b/client/map/items/sliced_tomato.gd
index 1c491255..a9114a44 100644
--- a/client/map/items/sliced_tomato.gd
+++ b/client/map/items/sliced_tomato.gd
@@ -21,4 +21,4 @@ func _init(owned_by_: Node3D):
base.add_child(load("res://map/items/sliced_tomato.tscn").instantiate())
static func height() -> float:
- return .025
+ return .05