From b1ccb71bb7c7f4291a6527d7009df8d1de58b822 Mon Sep 17 00:00:00 2001 From: Runa Dacino Date: Thu, 22 Jun 2023 23:02:24 +0200 Subject: [PATCH] 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 --- code/modules/mining/mine_turfs.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mining/mine_turfs.dm b/code/modules/mining/mine_turfs.dm index a7bbbd9d343..574bf8ff3ac 100644 --- a/code/modules/mining/mine_turfs.dm +++ b/code/modules/mining/mine_turfs.dm @@ -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,