mirror of
https://gitlab.com/lunovox/e-urn.git
synced 2025-03-15 07:21:22 +00:00
[bugfix] Correção de bug crítico de auto-contagem de votos!
This commit is contained in:
parent
862fc7c446
commit
a32474939c
1 changed files with 8 additions and 10 deletions
18
api.lua
18
api.lua
|
@ -476,16 +476,14 @@ minetest.after(3.5, function()
|
|||
local mesChecked = os.date("%m", tonumber(modEUrn.handler.elected.president.when))
|
||||
if mesChecked ~= mesAtual then
|
||||
local result, cause = modEUrn.doCheckPresident()
|
||||
if result == true then
|
||||
minetest.chat_send_all(
|
||||
core.colorize("#00FF00", "[E-URN]").." "..cause
|
||||
)
|
||||
else
|
||||
minetest.chat_send_player(
|
||||
playername,
|
||||
core.colorize("#FF0000", "[E-URN]").." "..cause
|
||||
)
|
||||
end
|
||||
local titlecolor = "#FF0000"
|
||||
if result == true then
|
||||
titlecolor = "#00FF00"
|
||||
modEUrn.doSave()
|
||||
end
|
||||
minetest.chat_send_all(
|
||||
core.colorize(titlecolor, "[E-URN]").." "..cause
|
||||
)
|
||||
end
|
||||
end
|
||||
end)
|
||||
|
|
Loading…
Add table
Reference in a new issue