Приветствую всех.
С НС у меня есть серьезная проблема с датами. Когда я пытаюсь выставить дату раньше, чем 1-е января 1970-го года, выдает следующую ошибку:
[ERROR] gamemodes/nutscript/gamemode/core/libs/sh_date.lua:45: attempt to perform arithmetic on a nil value
Если перейти по этой строке, то там будет блок с 31 по 45 строку:
function nut.date.get()
local realTime = RealTime()
-- Add the starting time + offset + current time played.
return nut.date.start + os.time({
year = nut.config.get("year"),
month = nut.config.get("month"),
day = nut.config.get("day")
}) + (realTime - (nut.joinTime or realTime))
end
Как быть и что с этим делать?
С НС у меня есть серьезная проблема с датами. Когда я пытаюсь выставить дату раньше, чем 1-е января 1970-го года, выдает следующую ошибку:
[ERROR] gamemodes/nutscript/gamemode/core/libs/sh_date.lua:45: attempt to perform arithmetic on a nil value
Если перейти по этой строке, то там будет блок с 31 по 45 строку:
function nut.date.get()
local realTime = RealTime()
-- Add the starting time + offset + current time played.
return nut.date.start + os.time({
year = nut.config.get("year"),
month = nut.config.get("month"),
day = nut.config.get("day")
}) + (realTime - (nut.joinTime or realTime))
end
Как быть и что с этим делать?