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
4 changes: 3 additions & 1 deletion Content/Bosses/SquidBoss/InteractiveProjectile.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Collections.Generic;
using StarlightRiver.Core.Systems.NoBuildingSystem;
using System.Collections.Generic;
using System.Linq;
using Terraria.DataStructures;

Expand Down Expand Up @@ -42,6 +43,7 @@ public sealed override void OnKill(int timeLeft)
foreach (Point16 point in ValidPoints.Where(n => !Main.tile[n.X, n.Y].HasTile))
{
Framing.GetTileSafely(point.X, point.Y).IsActuated = false;
NoBuildSystem.pointExceptions.Add(point);
}

if (Projectile.timeLeft < 10)
Expand Down
2 changes: 1 addition & 1 deletion Core/Systems/NoBuildingSystem/NoBuildSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public override void PreWorldGen()
RuntimeRegionsByPoint.Clear();
}

public override void PreUpdateEntities()
public override void PreUpdateNPCs()
{
pointExceptions.Clear();
}
Expand Down
2 changes: 1 addition & 1 deletion build.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
displayName = Starlight River
author = Scalar, Egshels, and the Code Monkeys / Minari, Scalie, and the Shoehorned Vocaloid/ULTRAKILL/RoR2 References / Angela, Vector, and the Oblique Jokey Dev Team Names
version = 0.2.9.3
version = 0.2.9.4
dllReferences = StructureHelper, NetEasy_v0.1.8, NetSerializer
Loading