Skip to content

Commit

Permalink
Add a noise to paper stamping
Browse files Browse the repository at this point in the history
  • Loading branch information
fira committed Oct 20, 2023
1 parent 837aff2 commit 50ae9ea
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions code/modules/paperwork/paper.dm
Original file line number Diff line number Diff line change
Expand Up @@ -382,9 +382,6 @@

/obj/item/paper/attackby(obj/item/P, mob/user)
..()
var/clown = 0
if(user.mind && (user.job == "Clown"))
clown = 1

if(istype(P, /obj/item/paper) || istype(P, /obj/item/photo))
if (istype(P, /obj/item/paper/carbon))
Expand Down Expand Up @@ -424,6 +421,7 @@
return

stamps += (stamps=="" ? "<HR>" : "<BR>") + "<i>This paper has been stamped with the [P.name].</i>"
playsound(src, 'sound/effects/alien_footstep_medium3.ogg', 20, TRUE, 6)

var/image/stampoverlay = image('icons/obj/items/paper.dmi')
var/x
Expand All @@ -439,11 +437,6 @@
stampoverlay.pixel_x = x
stampoverlay.pixel_y = y

if(istype(P, /obj/item/tool/stamp/clown))
if(!clown)
to_chat(user, SPAN_NOTICE("You are totally unable to use the stamp. HONK!"))
return

if(!ico)
ico = new
ico += "paper_[P.icon_state]"
Expand Down

0 comments on commit 50ae9ea

Please sign in to comment.