mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2025-12-30 12:31:41 +09:00
Merge pull request #142 from Cooldude2606/feature/fix-chat-popup
Fixed chat popup for players with - in name
This commit is contained in:
@@ -28,7 +28,7 @@ Event.add(defines.events.on_console_chat,function(event)
|
|||||||
-- Loops over online players to see if they name is included
|
-- Loops over online players to see if they name is included
|
||||||
for _,mentioned_player in pairs(game.connected_players) do
|
for _,mentioned_player in pairs(game.connected_players) do
|
||||||
if mentioned_player.index ~= player.index then
|
if mentioned_player.index ~= player.index then
|
||||||
if search_string:match(mentioned_player.name:lower()) then
|
if search_string:match(mentioned_player.name:lower(), 1, true) then
|
||||||
send_text(mentioned_player.index,{'chat-popup.ping',player.name},player.chat_color)
|
send_text(mentioned_player.index,{'chat-popup.ping',player.name},player.chat_color)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user