From 99786302fe0725ac38280dce19f10e93ade9ec69 Mon Sep 17 00:00:00 2001 From: nikothedude <59709059+nikothedude@users.noreply.github.com> Date: Sat, 13 Jun 2026 16:25:21 -0400 Subject: [PATCH] Pull #96417 from tg - Fixes diamond and bluespace artifact boulders not containing any diamonds/bluespace crystals (#5783) ## About The Pull Request https://github.com/tgstation/tgstation/pull/96417 ## Why It's Good For The Game bugs bad ## Proof Of Testing
Screenshots/Videos tis a upstream pull
## Changelog :cl: fix: Fixed diamond and bluespace artifact boulders not containing any diamonds/bluespace crystals /:cl: Co-authored-by: SmArtKar <44720187+SmArtKar@users.noreply.github.com> --- code/game/objects/structures/lavaland/ore_vent.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/lavaland/ore_vent.dm b/code/game/objects/structures/lavaland/ore_vent.dm index 244e88102be..1936d9144b1 100644 --- a/code/game/objects/structures/lavaland/ore_vent.dm +++ b/code/game/objects/structures/lavaland/ore_vent.dm @@ -555,7 +555,7 @@ Shake(duration = 1.5 SECONDS) //decorate the boulder with materials - var/list/mats_list = list() + var/list/mats_list = new_rock.custom_materials?.Copy() || list() for(var/iteration in 1 to MINERALS_PER_BOULDER) var/datum/material/material = pick_weight(mineral_breakdown) mats_list[material] += ore_quantity_function(iteration)