From e877bd60eae5d0f3d93fe8b12474490df36c5595 Mon Sep 17 00:00:00 2001 From: AllanR Date: Thu, 5 Sep 2024 13:23:55 -0300 Subject: [PATCH] organizing spelllist --- .../antagonists/roguetown/villain/peasantrebel.dm | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/code/modules/antagonists/roguetown/villain/peasantrebel.dm b/code/modules/antagonists/roguetown/villain/peasantrebel.dm index c6d1962bc..3636902ef 100644 --- a/code/modules/antagonists/roguetown/villain/peasantrebel.dm +++ b/code/modules/antagonists/roguetown/villain/peasantrebel.dm @@ -111,21 +111,6 @@ return FALSE return TRUE -/obj/effect/proc_holder/spell/self/rebelconvert - name = "RECRUIT REBELS" - desc = "!" - antimagic_allowed = TRUE - charge_max = 150 - -/obj/effect/proc_holder/spell/self/rebelconvert/cast(list/targets,mob/user = usr) - ..() - var/inputty = input("Make a speech!", "ROGUETOWN") as text|null - if(inputty) - user.say(inputty, forced = "spell") - var/datum/antagonist/prebel/PR = user.mind.has_antag_datum(/datum/antagonist/prebel) - for(var/mob/living/carbon/human/L in get_hearers_in_view(6, get_turf(user))) - addtimer(CALLBACK(L,TYPE_PROC_REF(/mob/living/carbon/human, rev_ask), user,PR,inputty),1) - /mob/living/carbon/human/proc/rev_ask(mob/living/carbon/human/guy,datum/antagonist/prebel/mind_datum,offer) if(!guy || !mind_datum || !offer) return