Skip to content

Commit

Permalink
-Internal: Linux build fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
mostlikely4r committed Nov 8, 2024
1 parent d607c4b commit 9f500cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion playerbot/PlayerbotFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3355,7 +3355,7 @@ void PlayerbotFactory::InitReagents()
ItemPrototype const* proto = sObjectMgr.GetItemPrototype(*i);
if (!proto)
{
sLog.outError("No reagent (ItemId %d) found for bot %d (Class:%d)", i, bot->GetGUIDLow(), bot->getClass());
sLog.outError("No reagent (ItemId %d) found for bot %d (Class:%d)", *i, bot->GetGUIDLow(), bot->getClass());
continue;
}

Expand Down
2 changes: 1 addition & 1 deletion playerbot/strategy/values/MountValues.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "MountValues.h"
#include "playerbot/Chathelper.h"
#include "playerbot/ChatHelper.h"
#include "playerbot/strategy/AiObjectContext.h"

using namespace ai;
Expand Down

0 comments on commit 9f500cd

Please sign in to comment.