Files
vgstation13/code/game/gamemodes/highscores.dm
ShiftyRail d79c1fe070 Byond 516 v2.0 (#37553)
* The TGS thing

* Revert the 516 revert

* Further segment the world/New() proc

* Fixes an issue here
2025-05-12 00:50:25 -05:00

16 lines
384 B
Plaintext

/datum/data/record/money
fields = list(
"ckey" = "",
"role" = "",
"cash" = -999999,
"shift_duration" = -999999,
"date" = "0000-00-00",
)
/datum/data/record/money/New(ckey, role, cash, shift_duration = worldtime2text(), date = SQLtime())
fields["ckey"] = ckey
fields["role"] = role
fields["cash"] = cash
fields["shift_duration"]= shift_duration
fields["date"] = date