We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27ed168 commit 2dc1b1bCopy full SHA for 2dc1b1b
Entities/GroupedTriggerSpikes.cs
@@ -1,9 +1,10 @@
1
-using Microsoft.Xna.Framework;
+using Celeste.Mod.Entities;
2
+using Microsoft.Xna.Framework;
3
using Monocle;
4
using System;
5
using System.Collections.Generic;
6
-namespace Celeste.Mod.Entities {
7
+namespace Celeste.Mod.SpringCollab2020.Entities {
8
/// <summary>
9
/// TriggerSpikes that all come out when leaving the group.
10
/// </summary>
@@ -161,7 +162,7 @@ private bool SideSafeBlockCheck(Player player) {
161
162
163
private void OnCollide(Player player) {
164
GetPlayerCollideIndex(player, out int minIndex, out int maxIndex);
- if (maxIndex < 0 || minIndex >= spikePositions.Length) {
165
+ if (minIndex < 0 || minIndex >= spikePositions.Length) {
166
return;
167
}
168
0 commit comments