summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/script/api/script_town.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/script/api/script_town.cpp b/src/script/api/script_town.cpp
index fa4b9c0c7..b64adab1a 100644
--- a/src/script/api/script_town.cpp
+++ b/src/script/api/script_town.cpp
@@ -120,8 +120,8 @@
/* static */ uint32 ScriptTown::GetCargoGoal(TownID town_id, ScriptCargo::TownEffect towneffect_id)
{
- if (!IsValidTown(town_id)) return -1;
- if (!ScriptCargo::IsValidTownEffect(towneffect_id)) return -1;
+ if (!IsValidTown(town_id)) return UINT32_MAX;
+ if (!ScriptCargo::IsValidTownEffect(towneffect_id)) return UINT32_MAX;
const Town *t = ::Town::Get(town_id);