1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-01-26 03:52:22 +02:00

Mtn v3 - only post when wave is >= 1000 to discord

This commit is contained in:
Gerkiz 2022-09-30 22:24:01 +02:00
parent 30f207da55
commit 1b57f00a53

View File

@ -1263,7 +1263,9 @@ local function show_mvps(player)
}
}
if server_name_matches then
Server.to_discord_named_parsed_embed(send_ping_to_channel, text)
if wave >= 1000 then
Server.to_discord_named_parsed_embed(send_ping_to_channel, text)
end
else
Server.to_discord_embed_parsed(text)
end