mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
* Slag now processed in recycling correctly. * Slag puddles with no materials in them have the same melting point as plastic. * Ore Redeemer skips slag.
12 lines
243 B
Plaintext
12 lines
243 B
Plaintext
// 20 of every ore.
|
|
/obj/structure/ore_box/hax
|
|
New()
|
|
..()
|
|
for(var/ore_id in materials.storage)
|
|
materials.addAmount(ore_id, 20)
|
|
|
|
/obj/item/weapon/ore/slag/hax
|
|
New()
|
|
..()
|
|
for(var/ore_id in mats.storage)
|
|
mats.addAmount(ore_id, 20) |