Skip to content

Commit 2b8193e

Browse files
authored
fix(SoloCraft): Limit XP modification to instances only (#49)
## Changes Proposed This PR addresses an issue in the SoloCraft module where XP modification was being applied to all players, regardless of whether they were in an instance or not. The changes include: 1. Implemented a system to track whether players are in instances or not. 2. Modified the XP calculation to only apply when players are in instances (dungeons or raids). 3. Fixed build errors related to the use of ObjectGuid. ## Implementation Details - Added a `std::map<ObjectGuid, bool>` to track players' instance status. - Implemented `OnMapChanged` to update players' instance status. - Modified `OnGiveXP` to check instance status before applying XP modifications. - Updated `OnLogout` to clean up instance tracking data. ## How to Test 1. Enable the SoloCraft module. 2. Enter a dungeon or raid and kill some mobs. Verify that XP is modified as expected. 3. Exit the instance and kill mobs in the open world. Verify that XP is not modified. 4. Re-enter an instance and confirm that XP modification resumes. ## Issues Addressed This PR fixes the issue where XP modification was being applied globally, even outside of instances.
1 parent de2eda4 commit 2b8193e

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

src/Solocraft.cpp

+19-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#include "Chat.h"
1212
#include <math.h>
1313
#include <unordered_map>
14+
#include "ObjectGuid.h"
1415

1516
bool SoloCraftEnable = 1;
1617
bool SoloCraftAnnounceModule = 1;
@@ -309,6 +310,9 @@ class SolocraftConfig : public WorldScript
309310

310311
class SolocraftAnnounce : public PlayerScript
311312
{
313+
private:
314+
std::map<ObjectGuid, bool> playerInInstanceMap;
315+
312316
public:
313317
SolocraftAnnounce() : PlayerScript("SolocraftAnnounce") {}
314318

@@ -328,11 +332,24 @@ class SolocraftAnnounce : public PlayerScript
328332
//Remove database entry as the player has logged out
329333
CharacterDatabase.Execute("DELETE FROM `custom_solocraft_character_stats` WHERE `GUID`={}", player->GetGUID().GetCounter());
330334
}
335+
playerInInstanceMap.erase(player->GetGUID());
336+
}
337+
338+
void OnMapChanged(Player* player) override
339+
{
340+
if (player->GetMap()->IsDungeon() || player->GetMap()->IsRaid())
341+
{
342+
playerInInstanceMap[player->GetGUID()] = true;
343+
}
344+
else
345+
{
346+
playerInInstanceMap[player->GetGUID()] = false;
347+
}
331348
}
332349

333-
void OnGiveXP(Player* /*player*/, uint32& amount, Unit* /*victim*/, uint8 /*xpSource*/) override
350+
void OnGiveXP(Player* player, uint32& amount, Unit* /*victim*/, uint8 /*xpSource*/) override
334351
{
335-
if (SolocraftXPBalEnabled)
352+
if (SolocraftXPBalEnabled && playerInInstanceMap[player->GetGUID()])
336353
{
337354
// Decrease Experience based on number of players and difficulty of instance (0 to 100%)
338355
amount = uint32(amount * SoloCraftXPMod);

0 commit comments

Comments
 (0)