From a8412ac5f04944cd36006385927197a3fddb7856 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sun, 24 Apr 2022 22:26:59 +0200 Subject: [PATCH] increased the value of special-move constants to >100 so that the limit on sides is indeed 120 --- locations.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/locations.cpp b/locations.cpp index ec531e53..8421610b 100644 --- a/locations.cpp +++ b/locations.cpp @@ -462,12 +462,12 @@ EX bool proper(cell *c, int d) { return d >= 0 && d < c->type; } #if HDR -constexpr int STRONGWIND = 99; -constexpr int FALL = 98; -constexpr int NO_SPACE = 97; -constexpr int TELEPORT = 96; -constexpr int JUMP = 95; -constexpr int STAY = 94; +constexpr int STRONGWIND = 199; +constexpr int FALL = 198; +constexpr int NO_SPACE = 197; +constexpr int TELEPORT = 196; +constexpr int JUMP = 195; +constexpr int STAY = 194; namespace whirlwind { cell *jumpDestination(cell*); }