From c57624079b9fdcff6c3400dcf6c9f5fb4a50659f Mon Sep 17 00:00:00 2001 From: Emagi Date: Tue, 6 May 2025 19:05:09 -0400 Subject: [PATCH] another corner case with root using "Gather" --- source/WorldServer/GroundSpawn.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/WorldServer/GroundSpawn.cpp b/source/WorldServer/GroundSpawn.cpp index 830823b..a49f7da 100644 --- a/source/WorldServer/GroundSpawn.cpp +++ b/source/WorldServer/GroundSpawn.cpp @@ -564,7 +564,8 @@ void GroundSpawn::HandleUse(Client* client, string type){ } MHarvestUse.lock(); - if((type == "" || type == "collect") && client->GetVersion() <= 561) + std::string typeLwr = ToLower(type); + if((typeLwr == "" || typeLwr == "collect" || typeLwr == "gather") && client->GetVersion() <= 561) type = GetHarvestSpellType(); if (type == GetHarvestSpellType() && MeetsSpawnAccessRequirements(client->GetPlayer())) {