-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Improved Speed [StrictStrafe] mode - Fixed TickShift module - New EntityRemovedEvent - New Notifier - Added RaytraceUtils, MovementUtils and NetworkUtils - Renamed NoInvisible in NoRender to trueSight - Added autoSteal delay in ChestAura - Improved Module search - Added placing check in AntiGhostBlocks - Fixed SafeWalk [OnEdge] mode and scaffold onEdge check. - Added [Shift] mode to ReverseStep - Optimised StringListSetting - Optimised BlockESP - Improved Notifications, and added smooth animations to it. Removed hard-coded values and added more customisation settings for notifications. - Added BACK_OUT easing - Changed BiConsumer to Consumer in ChunkChecker - Monthly bug hunting
- Loading branch information
1 parent
beeaec7
commit 61d920b
Showing
83 changed files
with
1,728 additions
and
710 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
src/main/java/dev/heliosclient/event/events/entity/EntityRemovedEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package dev.heliosclient.event.events.entity; | ||
|
||
import dev.heliosclient.event.Event; | ||
import net.minecraft.entity.Entity; | ||
|
||
public class EntityRemovedEvent extends Event { | ||
private final Entity entity; | ||
private final int entityId; | ||
private final Entity.RemovalReason removalReason; | ||
|
||
public EntityRemovedEvent(Entity entity, Entity.RemovalReason removalReason, int entityId) { | ||
this.entity = entity; | ||
this.removalReason = removalReason; | ||
this.entityId = entityId; | ||
} | ||
|
||
public Entity.RemovalReason getRemovalReason() { | ||
return removalReason; | ||
} | ||
|
||
public int getEntityId() { | ||
return entityId; | ||
} | ||
|
||
public Entity getEntity() { | ||
return entity; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.