diff --git a/code/modules/mining/ores_coins.dm b/code/modules/mining/ores_coins.dm
index d29e0d0252..b59ec2114b 100644
--- a/code/modules/mining/ores_coins.dm
+++ b/code/modules/mining/ores_coins.dm
@@ -88,39 +88,39 @@
pixel_y = rand(0,8)-8
/obj/item/weapon/coin/gold
- name = "Gold coin"
+ name = "gold coin"
icon_state = "coin_gold"
/obj/item/weapon/coin/silver
- name = "Silver coin"
+ name = "silver coin"
icon_state = "coin_silver"
/obj/item/weapon/coin/diamond
- name = "Diamond coin"
+ name = "diamond coin"
icon_state = "coin_diamond"
/obj/item/weapon/coin/iron
- name = "Iron coin"
+ name = "iron coin"
icon_state = "coin_iron"
/obj/item/weapon/coin/plasma
- name = "Solid plasma coin"
+ name = "solid plasma coin"
icon_state = "coin_plasma"
/obj/item/weapon/coin/uranium
- name = "Uranium coin"
+ name = "uranium coin"
icon_state = "coin_uranium"
/obj/item/weapon/coin/clown
- name = "Bananaium coin"
+ name = "bananaium coin"
icon_state = "coin_clown"
/obj/item/weapon/coin/adamantine
- name = "Adamantine coin"
+ name = "adamantine coin"
icon_state = "coin_adamantine"
/obj/item/weapon/coin/mythril
- name = "Mythril coin"
+ name = "mythril coin"
icon_state = "coin_mythril"
/obj/item/weapon/coin/attackby(obj/item/weapon/W as obj, mob/user as mob)
@@ -159,6 +159,5 @@
comment = "tails"
else if(result == 2)
comment = "heads"
- user.visible_message("[user] has thrown [src]. It lands on [comment]! ", \
- "You throw [src]. It lands on [comment]! ", \
- "You hear [src] landing on [comment]! ")
+ user.visible_message("[user] has thrown the [src]. It lands on [comment]! ", \
+ "You throw the [src]. It lands on [comment]! ")