Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Content/Biomes/CrabCrevice/CrabCreviceGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -680,6 +680,9 @@ protected override void Generate() {
else if (ThoriumMod.Instance != null) {
wantedDirection = Main.dungeonX * 2 < Main.maxTilesX ? -1 : 1;
}
else if (ContinentOfJourney.Instance != null) {
wantedDirection = 1;
}

if (Main.remixWorld) {
location.X = GenVars.UndergroundDesertLocation.X + GenVars.UndergroundDesertLocation.Width / 2;
Expand Down
20 changes: 20 additions & 0 deletions CrossMod/ContinentOfJourney.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
using Aequus.Common.CrossMod;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Terraria.ModLoader;

namespace Aequus.CrossMod {
internal class ContinentOfJourney : ModSupport<ContinentOfJourney> {
public override void SafeLoad(Mod mod) {
}

public override void AddRecipes() {
}

public override void SafeUnload() {
}
}
}