Small edits

This commit is contained in:
Cooldude2606
2018-01-04 14:09:22 +00:00
parent af1c6e8d90
commit 2a4d4ac0bf
2 changed files with 18 additions and 3 deletions

View File

@@ -34,7 +34,7 @@ end
-- this returns a global list
function Ranking._presets()
if not global.exp_core then global.exp_core = {} end
if not global.exp_core.ranking then global.exp_core.ranking = {meta=Ranking._meta(),old={},current={}} end
if not global.exp_core.ranking then global.exp_core.ranking = {meta=Ranking._meta(),old={},current={},last_jail=nil} end
return global.exp_core.ranking
end
@@ -134,6 +134,16 @@ function Ranking.give_rank(player,rank,by_player,tick)
old_rank=old_rank
})
end
if rank.group.name == 'Jail' and Ranking._presets().last_jail ~= player.name then
discord_emit{
title='Player Jail',
color=Color.to_hex(defines.text_color.med),
description='There was a player jailed.',
['Player:']=player.name,
['By:']='<<inline>>'..by_player_name,
['Reason:']='No Reason'
}
end
end
--- Revert the last change to a players rank