mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-24 21:40:55 +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:
@@ -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)
|
||||
|
||||
|
||||
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user