Skip to content

Commit

Permalink
replaced an underscore with ' '
Browse files Browse the repository at this point in the history
  • Loading branch information
mabako committed May 6, 2010
1 parent 9d6eb3a commit 3dbe1be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/admin/player.lua
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ addEventHandler( "onPlayerQuit", root,
function( type, reason, player )
if player and getElementType( player ) == "player" then
if type == "Kicked" then
outputChatBox( getPlayerName( player ):gsub( "_", " " ) .. " kicked " .. getPlayerName( source ) .. "." .. ( reason and #reason > 0 and ( " Reason: " .. reason ) or "" ), root, 255, 0, 0 )
outputChatBox( getPlayerName( player ):gsub( "_", " " ) .. " kicked " .. getPlayerName( source ):gsub( "_", " " ) .. "." .. ( reason and #reason > 0 and ( " Reason: " .. reason ) or "" ), root, 255, 0, 0 )
end
end
end
Expand Down

0 comments on commit 3dbe1be

Please sign in to comment.