From c95a11f6431474c18636e7b4e415d812452cea7a Mon Sep 17 00:00:00 2001 From: GunHog Date: Tue, 29 Sep 2015 19:01:10 -0500 Subject: [PATCH] Slight cost change for promotions - 500 to 450 --- code/modules/mob/living/carbon/alien/humanoid/queen.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/alien/humanoid/queen.dm b/code/modules/mob/living/carbon/alien/humanoid/queen.dm index 342abf17a03..19ce23f59ce 100644 --- a/code/modules/mob/living/carbon/alien/humanoid/queen.dm +++ b/code/modules/mob/living/carbon/alien/humanoid/queen.dm @@ -82,7 +82,7 @@ /obj/effect/proc_holder/alien/royal/queen/promote name = "Create Royal Parasite" desc = "Produce a royal parasite to grant one of your children the honor of being your Praetorian." - plasma_cost = 500 //Plasma cost used on promotion, not spawning the parasite. + plasma_cost = 450 //Plasma cost used on promotion, not spawning the parasite. action_icon_state = "alien_queen_promote" @@ -125,8 +125,8 @@ var/mob/living/carbon/alien/humanoid/A = M if(A.stat == CONSCIOUS && A.mind && A.key) - if(!A.usePlasma(500)) - user << "You must have 500 plasma stored to use this!" + if(!A.usePlasma(450)) + user << "You must have 450 plasma stored to use this!" return A << "The queen has granted you a promotion to Praetorian!"