mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-20 19:44:09 +01:00
Humans keep their name upon de-monkification
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
/datum/dna/gene/monkey/activate(var/mob/living/carbon/human/H, var/connected, var/flags)
|
||||
if(!istype(H,/mob/living/carbon/human))
|
||||
return
|
||||
if(issmall(H))
|
||||
if(issmall(H))
|
||||
return
|
||||
for(var/obj/item/W in H)
|
||||
if(istype(W,/obj/item/organ))
|
||||
@@ -18,13 +18,13 @@
|
||||
if(istype(W,/obj/item/weapon/implant))
|
||||
continue
|
||||
H.unEquip(W)
|
||||
|
||||
|
||||
H.regenerate_icons()
|
||||
H.SetStunned(1)
|
||||
H.canmove = 0
|
||||
H.icon = null
|
||||
H.invisibility = 101
|
||||
|
||||
|
||||
var/atom/movable/overlay/animation = new /atom/movable/overlay(H.loc)
|
||||
animation.icon_state = "blank"
|
||||
animation.icon = 'icons/mob/mob.dmi'
|
||||
@@ -32,7 +32,7 @@
|
||||
flick("h2monkey", animation)
|
||||
sleep(22)
|
||||
qdel(animation)
|
||||
|
||||
|
||||
H.SetStunned(0)
|
||||
H.invisibility = initial(H.invisibility)
|
||||
|
||||
@@ -65,7 +65,7 @@
|
||||
H.canmove = 0
|
||||
H.icon = null
|
||||
H.invisibility = 101
|
||||
|
||||
|
||||
var/atom/movable/overlay/animation = new /atom/movable/overlay(H.loc)
|
||||
animation.icon_state = "blank"
|
||||
animation.icon = 'icons/mob/mob.dmi'
|
||||
@@ -82,6 +82,8 @@
|
||||
return
|
||||
|
||||
H.set_species(H.species.greater_form)
|
||||
H.real_name = H.dna.real_name
|
||||
H.name = H.real_name
|
||||
|
||||
if(H.hud_used)
|
||||
H.hud_used.instantiate()
|
||||
|
||||
Reference in New Issue
Block a user