From 8ad25150a29614a9217007d9bbb34d8bac40566a Mon Sep 17 00:00:00 2001 From: Emagi Date: Sun, 11 May 2025 21:03:16 -0400 Subject: [PATCH] And they call it a mine! --- 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 d648640..86d243a 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(client->GetVersion() <= 561 && (typeLwr == "" || typeLwr == "collect" || typeLwr == "gather" || typeLwr == "chop")) + if(client->GetVersion() <= 561 && (typeLwr == "" || typeLwr == "collect" || typeLwr == "gather" || typeLwr == "chop" || typeLwr == "mine")) type = GetHarvestSpellType(); if (type == GetHarvestSpellType() && MeetsSpawnAccessRequirements(client->GetPlayer())) {