From 342e6daebda2c91296499424c764d637f821d3b2 Mon Sep 17 00:00:00 2001 From: Ivan Savenko Date: Mon, 5 Feb 2024 21:07:50 +0200 Subject: [PATCH] Fix copy-paste error --- lib/constants/EntityIdentifiers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/constants/EntityIdentifiers.h b/lib/constants/EntityIdentifiers.h index 7bebcdf66..070d26492 100644 --- a/lib/constants/EntityIdentifiers.h +++ b/lib/constants/EntityIdentifiers.h @@ -330,7 +330,7 @@ public: static BuildingID FORT_LEVEL(unsigned int level) { assert(level < 3); - return BuildingID(Type::TOWN_HALL + level); + return BuildingID(Type::FORT + level); } static std::string encode(int32_t index);