From ee1c321e0ba4325de7f648436eae99d740105147 Mon Sep 17 00:00:00 2001 From: dwasint <82520990+dwasint@users.noreply.github.com> Date: Sat, 23 Sep 2023 03:12:57 -0400 Subject: [PATCH] TYPE_PROC over PROC_REf --- monkestation/code/modules/ghost_players/ghost_player.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monkestation/code/modules/ghost_players/ghost_player.dm b/monkestation/code/modules/ghost_players/ghost_player.dm index abb3458b6f76..166417348b5b 100644 --- a/monkestation/code/modules/ghost_players/ghost_player.dm +++ b/monkestation/code/modules/ghost_players/ghost_player.dm @@ -24,7 +24,7 @@ /mob/living/carbon/human/ghost/Destroy() . = ..() if(dueling && linked_button) - addtimer(CALLBACK(linked_button, PROC_REF(end_duel), src), 3 SECONDS) + addtimer(CALLBACK(linked_button, TYPE_PROC_REF(/obj/structure/fight_button, end_duel), src), 3 SECONDS) if(linked_button) linked_button.remove_user(src)