From 7417d10c99199e4ad8a2d0a7dba63d56a3d1acb2 Mon Sep 17 00:00:00 2001 From: errorage Date: Wed, 10 Apr 2013 04:40:54 +0200 Subject: [PATCH] - Removes mimes' ability to speak. Clowns cannot break their clumsy nature, so mimes should not be able to break their silence. --- code/game/jobs/job/civilian.dm | 4 ++-- code/game/jobs/jobprocs.dm | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/code/game/jobs/job/civilian.dm b/code/game/jobs/job/civilian.dm index e2cf380a9cc..37f92d4556a 100644 --- a/code/game/jobs/job/civilian.dm +++ b/code/game/jobs/job/civilian.dm @@ -238,9 +238,9 @@ H.equip_to_slot_or_del(new /obj/item/weapon/storage/box/survival(H.back), slot_in_backpack) H.equip_to_slot_or_del(new /obj/item/toy/crayon/mime(H), slot_in_backpack) H.equip_to_slot_or_del(new /obj/item/weapon/reagent_containers/food/drinks/bottle/bottleofnothing(H), slot_in_backpack) - H.verbs += /client/proc/mimespeak + //H.verbs += /client/proc/mimespeak H.verbs += /client/proc/mimewall - H.mind.special_verbs += /client/proc/mimespeak + //H.mind.special_verbs += /client/proc/mimespeak H.mind.special_verbs += /client/proc/mimewall H.miming = 1 return 1 diff --git a/code/game/jobs/jobprocs.dm b/code/game/jobs/jobprocs.dm index c2f4331794c..95c8feebfd6 100644 --- a/code/game/jobs/jobprocs.dm +++ b/code/game/jobs/jobprocs.dm @@ -28,6 +28,7 @@ //////////////////////// +/* /client/proc/mimespeak() set category = "Mime" set name = "Speech" @@ -43,4 +44,6 @@ H << "You'll have to wait if you want to atone for your sins." spawn(3000) H.miming = 1 - return \ No newline at end of file + return + + */ \ No newline at end of file