@@ -37,7 +37,6 @@ static void game_cheat_start_invasion(pcstr);
37
37
static void game_cheat_advance_year (pcstr);
38
38
static void game_cheat_cast_blessing (pcstr);
39
39
static void game_cheat_show_tooltip (pcstr);
40
- static void game_cheat_kill_all (pcstr);
41
40
static void game_cheat_victory (pcstr);
42
41
static void game_cheat_cast_upset (pcstr);
43
42
static void game_cheat_start_plague (pcstr);
@@ -74,7 +73,6 @@ static cheat_command_handle g_cheat_commands[] = {{"startinvasion", game_cheat_s
74
73
{" godupset" , game_cheat_cast_upset},
75
74
{" showtooltip" , game_cheat_show_tooltip},
76
75
{" startplague" , game_cheat_start_plague},
77
- {" killall" , game_cheat_kill_all},
78
76
{" victory" , game_cheat_victory},
79
77
{" popmilestone" , game_cheat_pop_milestone},
80
78
{" fire" , game_cheat_fire},
@@ -376,11 +374,6 @@ static void game_cheat_start_plague(pcstr args) {
376
374
city_health_start_disease (total_population, true , plague_people);
377
375
}
378
376
379
- static void game_cheat_kill_all (pcstr args) {
380
- figure_kill_all ();
381
- city_warning_show_console (" Killed all walkers" );
382
- }
383
-
384
377
void game_cheat_parse_command (pcstr command) {
385
378
bstring256 command_to_call;
386
379
int next_arg = parse_word (command, command_to_call);
0 commit comments