aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorOvahlord <dreadkiller@gmx.de>2024-11-15 16:42:50 +0100
committerOvahlord <dreadkiller@gmx.de>2024-11-15 16:42:50 +0100
commit740b8b897f7e2cbce7c5dee083cfbd747573ca08 (patch)
treeb2f82877af595541a45f3099fc967cf84c433324 /src
parent87b2cd5b27c1beca233abc4444e42b94012b56db (diff)
Core/Creatures: reduce the allowed amount of tappers from 5 down to 1
Diffstat (limited to 'src')
-rw-r--r--src/server/game/Entities/Creature/Creature.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Entities/Creature/Creature.h b/src/server/game/Entities/Creature/Creature.h
index fb3f2bfb495..9eea92ec229 100644
--- a/src/server/game/Entities/Creature/Creature.h
+++ b/src/server/game/Entities/Creature/Creature.h
@@ -60,7 +60,7 @@ enum class VendorInventoryReason : uint8
};
static constexpr uint8 WILD_BATTLE_PET_DEFAULT_LEVEL = 1;
-static constexpr size_t CREATURE_TAPPERS_SOFT_CAP = 5;
+static constexpr size_t CREATURE_TAPPERS_SOFT_CAP = 1; // Classic Only - only allow one tapper at a time
//used for handling non-repeatable random texts
typedef std::vector<uint8> CreatureTextRepeatIds;