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
co-authored by Matt Atlas
parent 1d359b64e3
commit dd482c63af
326 changed files with 672 additions and 833 deletions
+4 -4
View File
@@ -771,7 +771,7 @@
L.Weaken(3)
if(ishuman(L))
shake_camera(L, 20, 1)
addtimer(CALLBACK(L, /mob/living/carbon/human.proc/vomit), 20)
addtimer(CALLBACK(L, TYPE_PROC_REF(/mob/living/carbon/human, vomit), 20))
/**********************Lazarus Injector**********************/
@@ -1079,7 +1079,7 @@ var/list/total_extraction_beacons = list()
name = "strong resonance field"
resonance_damage = 60
addtimer(CALLBACK(src, .proc/burst, loc), timetoburst)
addtimer(CALLBACK(src, PROC_REF(burst), loc), timetoburst)
/obj/effect/resonance/Destroy()
if(res)
@@ -1443,9 +1443,9 @@ var/list/total_extraction_beacons = list()
L.Weaken(3)
shake_camera(L, 20, 1)
if(!isipc(L) && ishuman(L))
addtimer(CALLBACK(L, /mob/living/carbon/human.proc/vomit), 20)
addtimer(CALLBACK(L, TYPE_PROC_REF(/mob/living/carbon/human, vomit)), 20)
addtimer(CALLBACK(src, .proc/drill, location), 2)
addtimer(CALLBACK(src, PROC_REF(drill), location), 2)
qdel(src)
+1 -1
View File
@@ -327,7 +327,7 @@ var/list/mineral_can_smooth_with = list(
O = new /obj/item/ore(src)
if(istype(O))
O.geologic_data = get_geodata()
addtimer(CALLBACK(O, /atom/movable/.proc/forceMove, user.loc), 1)
addtimer(CALLBACK(O, TYPE_PROC_REF(/atom/movable, forceMove), user.loc), 1)
if(finds?.len)
var/datum/find/F = finds[1]