mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-09 07:57:50 +00:00
* The TGS thing * Revert the 516 revert * Further segment the world/New() proc * Fixes an issue here
16 lines
384 B
Plaintext
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
|