Skip to content

Commit

Permalink
possible fix for chat reply to guild invite
Browse files Browse the repository at this point in the history
  • Loading branch information
celguar committed May 21, 2024
1 parent fcf0ee2 commit 2023270
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion playerbot/strategy/actions/GuildManagementActions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ bool GuildManageNearbyAction::Execute(Event& event)
{
std::map<std::string, std::string> placeholders;
placeholders["%name"] = player->GetName();
placeholders["%members"] = guild->GetMemberSize();
placeholders["%members"] = std::to_string(guild->GetMemberSize());
placeholders["%guildname"] = guild->GetName();
placeholders["%place"] = WorldPosition(player).getAreaName(false, false);

Expand Down

0 comments on commit 2023270

Please sign in to comment.