kill an unused macro.

This commit is contained in:
Enno Rehling 2018-05-13 16:17:03 +02:00
parent 4240e142a5
commit c223542ced

View file

@ -515,9 +515,8 @@ static void icebergs(void)
move_icebergs(); move_icebergs();
} }
#define HERBS_ROT /* herbs owned by units have a chance to rot. */
#define HERBROTCHANCE 5 /* Verrottchance f<>r Kr<4B>uter (ifdef HERBS_ROT) */ #define HERBROTCHANCE 5 /* Verrottchance f<>r Kr<4B>uter (ifdef HERBS_ROT) */
#ifdef HERBS_ROT
static void rotting_herbs(void) static void rotting_herbs(void)
{ {
region *r; region *r;
@ -550,7 +549,6 @@ static void rotting_herbs(void)
} }
} }
} }
#endif
void randomevents(void) void randomevents(void)
{ {
@ -594,9 +592,7 @@ void randomevents(void)
} }
chaos_update(); chaos_update();
#ifdef HERBS_ROT
rotting_herbs(); rotting_herbs();
#endif
dissolve_units(); dissolve_units();
} }