From 65f53f77b72ea2d7e1b1b1b9dc6c797ed9b3ac36 Mon Sep 17 00:00:00 2001 From: Emagi Date: Tue, 6 May 2025 19:01:38 -0400 Subject: [PATCH] Additionally check if older clients send "collect" for type as that is not the harvest type either --- 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 e2798ef..830823b 100644 --- a/source/WorldServer/GroundSpawn.cpp +++ b/source/WorldServer/GroundSpawn.cpp @@ -564,7 +564,7 @@ void GroundSpawn::HandleUse(Client* client, string type){ } MHarvestUse.lock(); - if(type == "" && client->GetVersion() <= 561) + if((type == "" || type == "collect") && client->GetVersion() <= 561) type = GetHarvestSpellType(); if (type == GetHarvestSpellType() && MeetsSpawnAccessRequirements(client->GetPlayer())) {