Fixes bug where people could teach themselves dronespeak (#64785)

Oversight from #54192 (0e6ac80e57) which in turn fixed an oversight from #53916 (9c95813da4)
This commit is contained in:
RandomGamer123
2022-02-11 04:42:29 -05:00
committed by GitHub
parent 248a357b17
commit e47912eb4c
@@ -102,3 +102,10 @@
return
return ..()
/obj/item/language_manual/dronespeak_manual/attack_self(mob/living/user)
if(!(isdrone(user) || issilicon(user)))
to_chat(user, span_danger("You beat yourself over the head with [src]!"))
return
return ..()