Fixing file load failing

This commit is contained in:
Cooldude2606
2019-05-25 16:21:32 +01:00
parent fba761a7c6
commit 0d24257835
18 changed files with 22 additions and 19 deletions

View File

@@ -15,11 +15,11 @@ local Public = {
}
Global.register({
Public.user_warnings,
Public.user_temp_warnings
user_warnings = Public.user_warnings,
user_temp_warnings = Public.user_temp_warnings
},function(tbl)
Public.user_warnings = tbl[1]
Public.user_temp_warnings = tbl[2]
Public.user_warnings = tbl.user_warnings
Public.user_temp_warnings = tbl.user_temp_warnings
end)
local function event_emit(event,player,by_player_name)