Skip to content

Commit 174b406

Browse files
committed
v5.104
1 parent 47e4d05 commit 174b406

File tree

5 files changed

+4
-12
lines changed

5 files changed

+4
-12
lines changed

1.6/Assemblies/AlphaBiomes.dll

0 Bytes
Binary file not shown.

1.6/Source/AlphaBiomes/AlphaBiomes/DefOfs/InternalDefOf.cs

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,7 @@ static InternalDefOf()
5959
public static ThingDef VFE_AdvancedSolarGenerator;
6060
[MayRequireOdyssey]
6161
public static ThingDef AB_AncientFreezingVent;
62-
[MayRequireOdyssey]
63-
[MayRequireAnomaly]
64-
public static ThingDef AB_AncientGreyPallVent;
65-
[MayRequireOdyssey]
66-
[MayRequireAnomaly]
67-
public static ThingDef AB_AncientBloodRainVent;
68-
[MayRequireOdyssey]
69-
[MayRequireAnomaly]
70-
public static ThingDef AB_AncientDeathPallVent;
62+
7163

7264
public static TerrainDef AB_ArtificialTar;
7365
public static TerrainDef AB_SoilOnCrackedMetal;

1.6/Source/AlphaBiomes/AlphaBiomes/TileMutatorWorkers/Ancient Vents/TileMutatorWorker_AncientBloodRainVent.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace AlphaBiomes
55
{
66
public class TileMutatorWorker_AncientBloodRainVent : TileMutatorWorker_AncientVent
77
{
8-
protected override ThingDef AncientVentDef => InternalDefOf.AB_AncientBloodRainVent;
8+
protected override ThingDef AncientVentDef => ThingDef.Named("AB_AncientBloodRainVent");
99

1010
public TileMutatorWorker_AncientBloodRainVent(TileMutatorDef def)
1111
: base(def)

1.6/Source/AlphaBiomes/AlphaBiomes/TileMutatorWorkers/Ancient Vents/TileMutatorWorker_AncientDeathPallVent.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace AlphaBiomes
55
{
66
public class TileMutatorWorker_AncientDeathPallVent : TileMutatorWorker_AncientVent
77
{
8-
protected override ThingDef AncientVentDef => InternalDefOf.AB_AncientDeathPallVent;
8+
protected override ThingDef AncientVentDef => ThingDef.Named("AB_AncientDeathPallVent");
99

1010
public TileMutatorWorker_AncientDeathPallVent(TileMutatorDef def)
1111
: base(def)

1.6/Source/AlphaBiomes/AlphaBiomes/TileMutatorWorkers/Ancient Vents/TileMutatorWorker_AncientGreyPallVent.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace AlphaBiomes
55
{
66
public class TileMutatorWorker_AncientGreyPallVent : TileMutatorWorker_AncientVent
77
{
8-
protected override ThingDef AncientVentDef => InternalDefOf.AB_AncientGreyPallVent;
8+
protected override ThingDef AncientVentDef => ThingDef.Named("AB_AncientGreyPallVent");
99

1010
public TileMutatorWorker_AncientGreyPallVent(TileMutatorDef def)
1111
: base(def)

0 commit comments

Comments
 (0)