From df3ce116a72eb5e847248532cd11a34be4f95486 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sat, 27 Dec 2014 23:50:34 +0100 Subject: [PATCH] limit eternath gates to 1-person units, avoid crash --- scripts/eressea/eternath.lua | 1 + src/build.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/eressea/eternath.lua b/scripts/eressea/eternath.lua index 1a93ad352..afdebb40e 100644 --- a/scripts/eressea/eternath.lua +++ b/scripts/eressea/eternath.lua @@ -22,6 +22,7 @@ end local eternath = {} function eternath.update() + local size = 1 if b1 and b2 then local units1 = gates.units(b1, size) local units2 = gates.units(b2, size) diff --git a/src/build.h b/src/build.h index 78d54c0d4..1b880e8d1 100644 --- a/src/build.h +++ b/src/build.h @@ -1,3 +1,3 @@ #define VERSION_MAJOR 3 #define VERSION_MINOR 3 -#define VERSION_BUILD 693 +#define VERSION_BUILD 694