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())) {