diff --git a/maps/expedition_vr/aerostat/_aerostat.dm b/maps/expedition_vr/aerostat/_aerostat.dm index cca08c6930b..e5c53b5140c 100644 --- a/maps/expedition_vr/aerostat/_aerostat.dm +++ b/maps/expedition_vr/aerostat/_aerostat.dm @@ -134,7 +134,7 @@ VIRGO2_TURF_CREATE(/turf/simulated/mineral) if(mineral) return - var/mineral_name = pickweight(list("marble" = 5, "uranium" = 5, "platinum" = 5, "hematite" = 5, "carbon" = 5, "diamond" = 5, "gold" = 5, "silver" = 5, "lead" = 5, "verdantium" = 5, "rutile" = 20)) + var/mineral_name = pickweight(list("marble" = 5, "uranium" = 5, "platinum" = 5, "hematite" = 5, "carbon" = 5, "diamond" = 5, "gold" = 5, "silver" = 5, "lead" = 5, "verdantium" = 5, "rutile" = 10, "copper" = 5, "tin" = 5, "bauxite" = 5)) if(mineral_name && (mineral_name in ore_data)) mineral = ore_data[mineral_name] diff --git a/maps/tether/tether_turfs.dm b/maps/tether/tether_turfs.dm index 0b99a2a8d7e..a0b7b960dd2 100644 --- a/maps/tether/tether_turfs.dm +++ b/maps/tether/tether_turfs.dm @@ -69,6 +69,10 @@ VIRGO3B_TURF_CREATE(/turf/simulated/mineral/floor) "uranium" = 10, "platinum" = 10, "hematite" = 20, + "copper" = 8, + "tin" = 4, + "bauxite" = 4, + "rutile" = 4, "carbon" = 20, "diamond" = 1, "gold" = 8, @@ -82,6 +86,10 @@ VIRGO3B_TURF_CREATE(/turf/simulated/mineral/floor) "uranium" = 5, "platinum" = 5, "hematite" = 35, + "copper" = 15, + "tin" = 10, + "bauxite" = 10, + "rutile" = 10, "carbon" = 35, "gold" = 3, "silver" = 3, diff --git a/vorestation.dme b/vorestation.dme index a0cc6979404..59c42c33264 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -2437,8 +2437,6 @@ #include "code\modules\mining\ore.dm" #include "code\modules\mining\ore_box.dm" #include "code\modules\mining\ore_datum.dm" -#include "code\modules\mining\ore_datum_vr.dm" -#include "code\modules\mining\ore_vr.dm" #include "code\modules\mining\resonator_vr.dm" #include "code\modules\mining\shelter_atoms_vr.dm" #include "code\modules\mining\shelters_vr.dm"