mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-26 21:48:21 +01:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user