Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Wide-Cat committed Feb 9, 2024
1 parent 3776a5f commit 3470964
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
*/
public class StatusEffectBruteForce {
private static final TrackedData<Integer> POTION_SWIRLS_COLOR = LivingEntityAccessor.meteor$getPotionSwirlsColor();
private static final TrackedData<Boolean> POTION_SWRISL_AMBIENT = LivingEntityAccessor.meteor$getPotionSwirlsAmbient();
private static final TrackedData<Boolean> POTION_SWIRLS_AMBIENT = LivingEntityAccessor.meteor$getPotionSwirlsAmbient();
private static final int EMPTY_COLOR = 3694022;
public static final Set<StatusEffectEntry> ALL_ENTRIES = new ReferenceOpenHashSet<>();
public static final Set<StatusEffectEntry> BEACON_ENTRIES = new ReferenceOpenHashSet<>();
Expand Down Expand Up @@ -130,7 +130,7 @@ private static void update(int particleColor, LivingEntity entity, EntityEffectC
Set<StatusEffectEntry> possibleEntries;
EffectAttributeModifier[] possibleModifiers;

if (entity.getDataTracker().get(POTION_SWRISL_AMBIENT)) { // entity is only affected by effects from beacons
if (entity.getDataTracker().get(POTION_SWIRLS_AMBIENT)) { // entity is only affected by effects from beacons
possibleEntries = BEACON_ENTRIES;
possibleModifiers = EffectAttributeModifier.BEACON;
} else {
Expand Down

0 comments on commit 3470964

Please sign in to comment.