Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions data/chatchannels/scripts/guild_leaders.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ end
function onSpeak(player, type, message)
local staff = player:getGroup():getAccess()
local guild = player:getGuild()
local info = "staff"
local info = "Staff"
type = TALKTYPE_CHANNEL_Y
if staff then
if guild then
Expand All @@ -15,6 +15,6 @@ function onSpeak(player, type, message)
else
info = guild:getName()
end
sendChannelMessage(10, type, player:getName() .. " [" .. info .. "]: " .. message)
sendChannelMessage(11, type, player:getName() .. " [" .. info .. "]: " .. message)
return false
end