mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-24 04:28:12 +01:00
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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user