aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2025-04-13 13:02:16 +0200
committerShauren <shauren.trinity@gmail.com>2025-04-13 13:02:16 +0200
commit0d027afe18c51dd0dcf8ac79c5eafb60e2cbcc16 (patch)
treea71a67f1167c743788a7c9adc56c1102483d51e3 /src
parentc3ee8498320894c229d64008b537647517cf613b (diff)
Core/Guilds: Fix setting guild notes
Diffstat (limited to 'src')
-rw-r--r--src/server/game/Handlers/GuildHandler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Handlers/GuildHandler.cpp b/src/server/game/Handlers/GuildHandler.cpp
index 3519f5f1811..8a7e32e7e2c 100644
--- a/src/server/game/Handlers/GuildHandler.cpp
+++ b/src/server/game/Handlers/GuildHandler.cpp
@@ -151,7 +151,7 @@ void WorldSession::HandleGuildSetPublicNoteOpcode(WorldPackets::Guild::GuildSetM
if (normalizePlayerName(packet.NoteeName))
if (Guild* guild = GetPlayer()->GetGuild())
- guild->HandleSetMemberNote(this, packet.Note, packet.NoteeName, false);
+ guild->HandleSetMemberNote(this, packet.Note, packet.NoteeName, true);
}
void WorldSession::HandleGuildSetOfficerNoteOpcode(WorldPackets::Guild::GuildSetMemberNote& packet)
@@ -161,7 +161,7 @@ void WorldSession::HandleGuildSetOfficerNoteOpcode(WorldPackets::Guild::GuildSet
if (normalizePlayerName(packet.NoteeName))
if (Guild* guild = GetPlayer()->GetGuild())
- guild->HandleSetMemberNote(this, packet.Note, packet.NoteeName, true);
+ guild->HandleSetMemberNote(this, packet.Note, packet.NoteeName, false);
}
void WorldSession::HandleGuildSetRankPermissions(WorldPackets::Guild::GuildSetRankPermissions& packet)