From 09c9ba32eb433d2c087caea1d195826e43cc0a5f Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sun, 26 Jul 2020 21:30:27 +0200 Subject: [PATCH] small bug: argument is not const. --- src/monsters.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/monsters.h b/src/monsters.h index 7b3cda142..c44ef1a00 100644 --- a/src/monsters.h +++ b/src/monsters.h @@ -15,7 +15,7 @@ extern "C" { struct unit *spawn_seaserpent(struct region *r, struct faction *f); void spawn_dragons(void); - void monsters_desert(const struct faction *monsters); + void monsters_desert(struct faction *monsters); void monster_cannibalism(struct unit *u); void monster_kills_peasants(struct unit *u);