-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Module fixes and command system fix.
NoSlowdown now works thanks to IEntity interface. Aimbot now has a toggle radius that goes from 1-256 blocks. Commands no longer send in chat.
- Loading branch information
1 parent
f1e8a55
commit fcd5968
Showing
5 changed files
with
45 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package net.aoba.mixin.interfaces; | ||
|
||
import org.spongepowered.asm.mixin.Mixin; | ||
import org.spongepowered.asm.mixin.gen.Accessor; | ||
import net.minecraft.entity.Entity; | ||
import net.minecraft.util.math.Vec3d; | ||
|
||
@Mixin(Entity.class) | ||
public interface IEntity { | ||
@Accessor("movementMultiplier") | ||
Vec3d getMovementMultiplier(); | ||
|
||
@Accessor("movementMultiplier") | ||
void setMovementMultiplier(Vec3d val); | ||
} |
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