mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-22 04:22:39 +01:00
Update the codebase to 515. (#15553)
* Update the codebase to 515. * edit that * WHOOPS * maor * maybe works * libcall and shit * do that too * remove that * auxtools isnt updated so get rid of it * actually remove auxtools lol Co-authored-by: Matt Atlas <liermattia@gmail.com>
This commit is contained in:
@@ -24,10 +24,10 @@ var/list/gear_datums = list()
|
||||
gear_datums[use_name] = new geartype
|
||||
LC.gear[use_name] = gear_datums[use_name]
|
||||
|
||||
sortTim(loadout_categories, /proc/cmp_text_asc, FALSE)
|
||||
sortTim(loadout_categories, GLOBAL_PROC_REF(cmp_text_asc), FALSE)
|
||||
for(var/loadout_category in loadout_categories)
|
||||
var/datum/loadout_category/LC = loadout_categories[loadout_category]
|
||||
sortTim(LC.gear, /proc/cmp_text_asc, FALSE)
|
||||
sortTim(LC.gear, GLOBAL_PROC_REF(cmp_text_asc), FALSE)
|
||||
|
||||
return TRUE
|
||||
|
||||
|
||||
@@ -60,7 +60,7 @@
|
||||
var/obj/item/storage/toolbox/lunchbox/lunchbox = lunchbox_type
|
||||
if(!initial(lunchbox.filled))
|
||||
lunchboxes[initial(lunchbox.name)] = lunchbox_type
|
||||
sortTim(lunchboxes, /proc/cmp_text_asc)
|
||||
sortTim(lunchboxes, GLOBAL_PROC_REF(cmp_text_asc))
|
||||
gear_tweaks += new /datum/gear_tweak/path(lunchboxes)
|
||||
gear_tweaks += new /datum/gear_tweak/contents(lunchables_lunches(), lunchables_snacks(), lunchables_drinks(), lunchables_utensil())
|
||||
|
||||
|
||||
@@ -198,7 +198,7 @@
|
||||
var/obj/item/storage/toolbox/lunchbox/lunchbox = lunchbox_type
|
||||
if(!initial(lunchbox.filled))
|
||||
lunchboxes[initial(lunchbox.name)] = lunchbox_type
|
||||
sortTim(lunchboxes, /proc/cmp_text_asc)
|
||||
sortTim(lunchboxes, GLOBAL_PROC_REF(cmp_text_asc))
|
||||
gear_tweaks += new /datum/gear_tweak/path(lunchboxes)
|
||||
gear_tweaks += new /datum/gear_tweak/contents(lunchables_vaurca(), lunchables_vaurca_snack(), lunchables_drinks(), lunchables_utensil())
|
||||
|
||||
|
||||
@@ -123,7 +123,7 @@
|
||||
|
||||
if (!SSjobs.safe_to_sanitize)
|
||||
if (!SSjobs.deferred_preference_sanitizations[src])
|
||||
SSjobs.deferred_preference_sanitizations[src] = CALLBACK(src, .proc/late_sanitize, sql_load)
|
||||
SSjobs.deferred_preference_sanitizations[src] = CALLBACK(src, PROC_REF(late_sanitize), sql_load)
|
||||
else
|
||||
late_sanitize(sql_load)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user