Skip to content

Commit

Permalink
Updates auxmos
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkSuckerberg committed Dec 2, 2023
1 parent 3b1abbe commit 45ae88e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
9 changes: 4 additions & 5 deletions code/datums/callback.dm
Original file line number Diff line number Diff line change
Expand Up @@ -29,22 +29,21 @@
* ### global proc while in another global proc:
* .procname
*
* `CALLBACK(GLOBAL_PROC, .some_proc_here)`
* `CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(some_proc_here))`
*
* ### proc defined on current(src) object (when in a /proc/ and not an override) OR overridden at src or any of it's parents:
* .procname
*
* `CALLBACK(src, .some_proc_here)`
* `CALLBACK(src, PROC_REF(some_proc_here))`
*
* ### when the above doesn't apply:
* PROC_REF(procname)
*
* `CALLBACK(src, PROC_REF(some_proc_here))`
*
* ### proc defined on a parent of a some type
*
* proc defined on a parent of a some type
*
* `TYPE_PROC_REF(/some/type, some_proc_here)`
* `CALLBACK(src, TYPE_PROC_REF(/some/type, some_proc_here))`
*
* Otherwise you must always provide the full typepath of the proc (/type/of/thing/proc/procname)
*/
Expand Down
2 changes: 2 additions & 0 deletions code/modules/power/singularity/narsie.dm
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@
/obj/singularity/narsie/large/cult/Destroy()
send_to_playing_players("<span class='narsie'>\"<b>[pick("Nooooo...", "Not die. How-", "Die. Mort-", "Sas tyen re-")]\"</b></span>")
sound_to_playing_players('sound/magic/demon_dies.ogg', 50)
if(GLOB.cult_narsie == src)
GLOB.cult_narsie = null
var/list/all_cults = list()
for(var/datum/antagonist/cult/C in GLOB.antagonists)
if(!C.owner)
Expand Down
2 changes: 1 addition & 1 deletion dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ export PYTHON_VERSION=3.7.9
export AUXMOS_REPO=https://github.com/Putnam3145/auxmos

#auxmos version
export AUXMOS_VERSION=015ffed6c76dcae8ab2a4deeca8e25d9e78321d9
export AUXMOS_VERSION=ee3a96c6645326bee6e332ffc859b786e71e05a8

0 comments on commit 45ae88e

Please sign in to comment.