Court Teleporter moved to beneath the Prison Shuttle access.

Minor changes to kitchen.

Clown stamp can now only be used by people who join as clowns.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@459 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
crazyclonetheninja
2010-11-19 16:50:14 +00:00
parent e886a7ce3f
commit ceace3d29a
2 changed files with 5911 additions and 5894 deletions
@@ -71,6 +71,9 @@ CLIPBOARDS
return
/obj/item/weapon/paper/attackby(obj/item/weapon/P as obj, mob/user as mob)
var/clown = 0
if(user.mind && (user.mind.assigned_role == "Clown"))
clown = 1
if (istype(P, /obj/item/weapon/pen))
var/t = input(user, "What text do you wish to add?", text("[]", src.name), null) as message
@@ -106,7 +109,11 @@ CLIPBOARDS
if(/obj/item/weapon/stamp/rd)
src.icon_state = "paper_stamped_rd"
if(/obj/item/weapon/stamp/clown)
src.icon_state = "paper_stamped_clown"
if (!clown)
usr << "\red You are totally unable to use the stamp. HONK!"
return
else
src.icon_state = "paper_stamped_clown"
else
src.icon_state = "paper_stamped"
if(!stamped)