mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-24 09:02:27 +00:00
Ghosts can no longer rename monkeys (#13543)
* Ghosts can no longer rename monkeys * Forgot to make it carbon like the last fix
This commit is contained in:
@@ -1232,8 +1232,13 @@ mob/living/carbon/human/proc/change_monitor()
|
||||
set category = "IC"
|
||||
set src in view(1)
|
||||
|
||||
var/mob/living/M = usr
|
||||
if(!M || usr == src)
|
||||
var/mob/living/carbon/M = usr
|
||||
if(!istype(M))
|
||||
to_chat(usr, SPAN_WARNING("You aren't allowed to rename \the [src]."))
|
||||
return
|
||||
|
||||
if(usr == src)
|
||||
to_chat(usr, SPAN_WARNING("You're a simple creature, you can't rename yourself!"))
|
||||
return
|
||||
|
||||
if(can_name(M))
|
||||
|
||||
Reference in New Issue
Block a user