Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cult 2020 Rework #2: Soul Stone cleanup and tweaks #28084

Merged
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@
sleep (gem_delay/3)
altar_task = ALTARTASK_NONE
update_icon()
var/obj/item/device/soulstone/gem/gem = new (loc)
var/obj/item/soulstone/gem/gem = new (loc)
gem.pixel_y = 4

/obj/structure/cult/altar/proc/replace_target(var/mob/user)
Expand Down Expand Up @@ -705,6 +705,7 @@
to_chat(usr, "<span class='warning'>Another shade was faster, and is currently possessing \the [blade].</span>")
return
var/mob/living/simple_animal/shade/shadeMob = new(blade)
blade.shade = shadeMob
shadeMob.status_flags |= GODMODE
shadeMob.canmove = 0
var/datum/role/cultist/cultist = M.mind.GetRole(CULTIST)
Expand Down Expand Up @@ -754,6 +755,7 @@
blade.forceMove(loc)
blade.blood = blade.maxblood
new_shade.forceMove(blade)
blade.shade = new_shade
blade.update_icon()
blade = null

Expand Down
Loading