From 0adc6f0e04e8f22ca3cc3abd6d74990eb1fa3962 Mon Sep 17 00:00:00 2001 From: Emagi Date: Tue, 6 May 2025 19:09:36 -0400 Subject: [PATCH] chop added also to the type list since it seems to be hit or miss if the client is sending it --- source/WorldServer/GroundSpawn.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/WorldServer/GroundSpawn.cpp b/source/WorldServer/GroundSpawn.cpp index a49f7da..d648640 100644 --- a/source/WorldServer/GroundSpawn.cpp +++ b/source/WorldServer/GroundSpawn.cpp @@ -565,7 +565,7 @@ void GroundSpawn::HandleUse(Client* client, string type){ MHarvestUse.lock(); std::string typeLwr = ToLower(type); - if((typeLwr == "" || typeLwr == "collect" || typeLwr == "gather") && client->GetVersion() <= 561) + if(client->GetVersion() <= 561 && (typeLwr == "" || typeLwr == "collect" || typeLwr == "gather" || typeLwr == "chop")) type = GetHarvestSpellType(); if (type == GetHarvestSpellType() && MeetsSpawnAccessRequirements(client->GetPlayer())) {