diff options
author | metamuffin <metamuffin@disroot.org> | 2024-09-16 16:03:59 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-09-16 16:04:03 +0200 |
commit | 4c517c59748282bfa6a496a03bbc4d2b7b7d78f8 (patch) | |
tree | b9206920aadeeab5f341d2280159413c6d89bdaa | |
parent | 072c7a7a6eaffbb92c6caf1bf035e12ede024298 (diff) | |
download | hurrycurry-4c517c59748282bfa6a496a03bbc4d2b7b7d78f8.tar hurrycurry-4c517c59748282bfa6a496a03bbc4d2b7b7d78f8.tar.bz2 hurrycurry-4c517c59748282bfa6a496a03bbc4d2b7b7d78f8.tar.zst |
fix lobby start game translatiion
-rw-r--r-- | client/menu/lobby.tscn | 2 | ||||
-rw-r--r-- | data/recipes/default.ts | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/client/menu/lobby.tscn b/client/menu/lobby.tscn index d1fe2233..fb749405 100644 --- a/client/menu/lobby.tscn +++ b/client/menu/lobby.tscn @@ -153,7 +153,7 @@ press_action = "join_spectate" [node name="Start" parent="HBoxContainer/Bottom/MarginContainer/VBoxContainer/VBoxContainer" instance=ExtResource("7_t6mox")] custom_minimum_size = Vector2(148, 0) layout_mode = 2 -text = "c.menu.lobby.start_game" +text = "c.menu.lobby.start" expand_icon = true controller_texture = ExtResource("9_q14bw") press_action = "start_game" diff --git a/data/recipes/default.ts b/data/recipes/default.ts index c2316b92..2e37bdfa 100644 --- a/data/recipes/default.ts +++ b/data/recipes/default.ts @@ -77,8 +77,8 @@ function auto_burn() { action: "passive", inputs: [i], outputs: [new Item("burned")], - duration: 1, - revert_duration: 1, + duration: 1.5, + revert_duration: 1.5, warn: true, tile: "stove" }) @@ -241,6 +241,7 @@ edible( combine(PL, cut(bun), b_patty, cut(tomato), cut(lettuce)), combine(PL, cut(bun), b_patty, cut(cheese), cut(tomato)), combine(PL, cut(bun), cut(cheese), cut(lettuce), cut(tomato)), + combine(PL, cut(bun), cut(lettuce), cut(tomato)), ) // Soup |