Add explosive cord. (#25875)

This commit is contained in:
IProduceWidgets
2025-09-25 17:33:28 -04:00
committed by GitHub
parent 5e55974c0e
commit 80947b128a
54 changed files with 601 additions and 24 deletions

View File

@@ -34,6 +34,6 @@ public struct PowerCableChunk
public PowerCableChunk(Vector2i origin)
{
Origin = origin;
PowerCableData = new int[3];
PowerCableData = new int[Enum.GetNames(typeof(CableType)).Length];
}
}