From ec6d48952606603327f7ae0c4e7811624f8bc751 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Madar=C3=A1sz?= Date: Sun, 16 Oct 2022 13:13:36 +0200 Subject: [PATCH] dont ask --- code/foundation/src/debug/debug_ui_actions.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/code/foundation/src/debug/debug_ui_actions.c b/code/foundation/src/debug/debug_ui_actions.c index e4cf248..ed6185b 100644 --- a/code/foundation/src/debug/debug_ui_actions.c +++ b/code/foundation/src/debug/debug_ui_actions.c @@ -17,7 +17,12 @@ ActSpawnCar(void) { Position * dest = ecs_get_mut(world_ecs(), e, Position); *dest = *origin; entity_set_position(e, dest->x, dest->y); -wwwwa + + debug_replay_special_action(RPKIND_SPAWN_CAR); +} + +void +ActSpawnItemPrev(void) { while (true) { --sel_item_id; item_id id = item_find_no_proxy(sel_item_id);