diff --git a/code/game/objects/items/glassjar.dm b/code/game/objects/items/glassjar.dm index 2e4fce64ec..de183dc345 100644 --- a/code/game/objects/items/glassjar.dm +++ b/code/game/objects/items/glassjar.dm @@ -61,7 +61,7 @@ if(contains != 1) return var/obj/item/weapon/spacecash/S = W - user.visible_message("[user] puts [S.worth] thalers into \the [src].") + user.visible_message("[user] puts [S.worth] [S.worth > 1 ? "thalers" : "thaler"] into \the [src].") 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) diff --git a/icons/obj/items.dmi b/icons/obj/items.dmi index a0e2526d3a..19f3dd1d1f 100644 Binary files a/icons/obj/items.dmi and b/icons/obj/items.dmi differ