fix(mining): Fixes mining explosives no longer spawning mhydrogen/platinum

A change was made in commit https://github.com/VOREStation/VOREStation/commit/41973fcdecec468a83258c4de4e9db77e91fbc3b that missed the mine_turfs.dm still referencing "osmium" and "hydrogen".

This caused the ex_act() on turfs to be unable to spawn them.

This fixes that.

I checked the rest of the code for potentially missed strings using VSCode's search and found nothing else
This commit is contained in:
Runa Dacino
2023-06-22 23:02:24 +02:00
parent 31f6bc3287
commit b1ccb71bb7
+2 -2
View File
@@ -51,8 +51,8 @@ var/list/mining_overlay_cache = list()
"silver" = /obj/item/weapon/ore/silver,
"diamond" = /obj/item/weapon/ore/diamond,
"phoron" = /obj/item/weapon/ore/phoron,
"osmium" = /obj/item/weapon/ore/osmium,
"hydrogen" = /obj/item/weapon/ore/hydrogen,
"platinum" = /obj/item/weapon/ore/osmium,
"mhydrogen" = /obj/item/weapon/ore/hydrogen,
"sand" = /obj/item/weapon/ore/glass,
"carbon" = /obj/item/weapon/ore/coal,
"verdantium" = /obj/item/weapon/ore/verdantium,