Updates jar sprite

Also fixes a tiny grammar mistake
This commit is contained in:
Kelenius
2015-04-04 18:59:03 +03:00
parent 4a21810b9d
commit b25993e130
2 changed files with 3 additions and 3 deletions
+3 -3
View File
@@ -61,7 +61,7 @@
if(contains != 1)
return
var/obj/item/weapon/spacecash/S = W
user.visible_message("<span class='notice'>[user] puts [S.worth] thalers into \the [src].</span>")
user.visible_message("<span class='notice'>[user] puts [S.worth] [S.worth > 1 ? "thalers" : "thaler"] into \the [src].</span>")
user.drop_from_inventory(S)
S.loc = src
update_icon()
@@ -77,9 +77,9 @@
desc = "A small jar with money inside."
for(var/obj/item/weapon/spacecash/S in src)
var/image/money = image(S.icon, S.icon_state)
money.pixel_x = rand(-3, 3)
money.pixel_x = rand(-2, 3)
money.pixel_y = rand(-6, 6)
money.transform *= 0.75
money.transform *= 0.6
underlays += money
else if(contains == 2)
for(var/mob/M in src)
Binary file not shown.

Before

Width:  |  Height:  |  Size: 58 KiB

After

Width:  |  Height:  |  Size: 58 KiB