Skip to content

Commit

Permalink
bugfix: sprite corrections by @PiotrTheTchaikowsky (#3692)
Browse files Browse the repository at this point in the history
  • Loading branch information
Daeberdir authored Oct 10, 2023
1 parent 31e968f commit b3914a6
Show file tree
Hide file tree
Showing 9 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/game/objects/items/weapons/kitchen.dm
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
/obj/item/kitchen/knife/butcher/meatcleaver
name = "meat cleaver"
icon_state = "mcleaver"
item_state = "butch"
item_state = "mcleaver"
force = 25
throwforce = 15

Expand Down
1 change: 1 addition & 0 deletions code/game/objects/items/weapons/storage/boxes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,7 @@
/obj/item/storage/box/cups
name = "box of paper cups"
desc = "It has pictures of paper cups on the front."
icon_state = "papercup"

/obj/item/storage/box/cups/populate_contents()
for(var/I in 1 to 7)
Expand Down
4 changes: 3 additions & 1 deletion code/modules/paperwork/photocopier.dm
Original file line number Diff line number Diff line change
Expand Up @@ -306,10 +306,12 @@
var/image/img //and puts a matching
for(var/j = 1, j <= temp_overlays.len, j++) //gray overlay onto the copy
if(copy.ico.len)
if(findtext(copy.ico[j], "cap") || findtext(copy.ico[j], "cent") || findtext(copy.ico[j], "rep"))
if(findtext(copy.ico[j], "cap") || findtext(copy.ico[j], "cent") || findtext(copy.ico[j], "rep") || findtext(copy.ico[j], "magistrate") || findtext(copy.ico[j], "navcom"))
img = image('icons/obj/bureaucracy.dmi', "paper_stamp-circle")
else if(findtext(copy.ico[j], "deny"))
img = image('icons/obj/bureaucracy.dmi', "paper_stamp-x")
else if(findtext(copy.ico[j], "ok"))
img = image('icons/obj/bureaucracy.dmi', "paper_stamp-check")
else
img = image('icons/obj/bureaucracy.dmi', "paper_stamp-dots")
img.pixel_x = copy.offset_x[j]
Expand Down
Binary file modified icons/mob/clothing/uniform.dmi
Binary file not shown.
Binary file modified icons/mob/inhands/items_lefthand.dmi
Binary file not shown.
Binary file modified icons/mob/inhands/items_righthand.dmi
Binary file not shown.
Binary file modified icons/obj/bureaucracy.dmi
Binary file not shown.
Binary file modified icons/obj/drinks.dmi
Binary file not shown.
Binary file modified icons/obj/storage.dmi
Binary file not shown.

0 comments on commit b3914a6

Please sign in to comment.