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:
Matt Atlas
2023-01-23 21:21:37 +01:00
committed by GitHub
parent 1d359b64e3
commit dd482c63af
326 changed files with 672 additions and 833 deletions

View File

@@ -3,7 +3,7 @@ var/global/list/datum/supply_drop_loot/supply_drop
/proc/supply_drop_random_loot_types()
if(!supply_drop)
supply_drop = init_subtypes(/datum/supply_drop_loot)
sortTim(supply_drop, /proc/cmp_supply_drop, FALSE)
sortTim(supply_drop, GLOBAL_PROC_REF(cmp_supply_drop), FALSE)
return supply_drop
/datum/supply_drop_loot

View File

@@ -13,7 +13,7 @@
/obj/structure/droppod_door/Initialize(mapload, var/autoopen)
. = ..(mapload)
if(autoopen)
addtimer(CALLBACK(src, .proc/deploy), 100)
addtimer(CALLBACK(src, PROC_REF(deploy)), 100)
/obj/structure/droppod_door/attack_ai(var/mob/user)
if(!Adjacent(user))