Skip to content

Commit

Permalink
fix: heck
Browse files Browse the repository at this point in the history
  • Loading branch information
Zepalesque committed Jun 11, 2024
1 parent 858642c commit 76a80b2
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/main/java/net/zepalesque/redux/entity/projectile/Ember.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/*
package net.zepalesque.redux.entity.projectile;
import com.aetherteam.nitrogen.entity.BossMob;
Expand All @@ -20,13 +21,8 @@
import net.minecraft.world.phys.HitResult;
import net.minecraft.world.phys.Vec3;
import net.neoforged.neoforge.event.EventHooks;
import net.zepalesque.redux.client.audio.ReduxSoundEvents;
import net.zepalesque.redux.client.audio.ReduxSounds;
import net.zepalesque.redux.client.particle.ReduxParticleTypes;
import net.zepalesque.redux.data.resource.ReduxDamageTypes;
import net.zepalesque.redux.entity.ReduxEntities;
import net.zepalesque.redux.entity.ReduxEntityTypes;
import net.zepalesque.redux.util.math.MathUtil;
import org.jetbrains.annotations.Nullable;
import java.util.ArrayList;
Expand Down Expand Up @@ -103,9 +99,11 @@ protected boolean hasHit(Entity entity) {
}
/**
*/
/**
* Called to update the entity's position/logic.
*/
*//*
public void tick() {
super.tick();
Vec3 vec3 = this.getDeltaMovement();
Expand Down Expand Up @@ -244,3 +242,4 @@ public void recreateFromPacket(ClientboundAddEntityPacket packet) {
this.setDeltaMovement(d0, d1, d2);
}
}
*/

0 comments on commit 76a80b2

Please sign in to comment.