Skip to content
This repository has been archived by the owner on Sep 24, 2024. It is now read-only.

Commit

Permalink
Readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
Nekiplay committed Mar 28, 2024
1 parent f87583d commit ccfa896
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
| **Speed+** | **Speed for Anti-Cheats** | **Matrix, ACC, Vulcan, NCP** |
| **Spider+** | **Spider for Anti-Cheats** | **Matrix, Vulcan** |
| **Jesus+** | **Jesus for Anti-Cheats** | **Matrix, Vulcan** |
| **Fast Ladder+** | **Fast Ladder for Anti-Cheats** | **Spartan** |
| **No Slow+** | **No Slow for Anti-Cheats** | **Matrix, Vulcan, Grim** |
| **Fast Ladder** | **Fast Ladder for Anti-Cheats** | **Spartan** |
| **Timer+** | **Timer for Anti-Cheats** | **NCP, Intave, Vulcan** |
| **Safe mine** | **Prevents player from lava** | **Matrix** |
| **X-Ray bruteforce** | **Xray protection bypass for servers 1.12.2** | **Ore Obfuscator** |
Expand Down Expand Up @@ -60,7 +61,8 @@
| Mod | Integrated |
|-----------------------|---------------------------------------------------------|
| **Journey Map** | **Goto from Baritone for map context menu** |
| **Xaero's World Map** | **Goto, Elytra fly from Baritone for map context menu** |
| **Xaero's World Map** | **Goto, Elytra fly from Baritone for map context menu** |
| **Chest Tracker** | **Color support** |

# Installation Guide
1. Install [minecraft](https://www.minecraft.net)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public void onReceivePacket(PacketEvent.Receive event) {
canCancel = true;
}

if ((packet instanceof EntityVelocityUpdateS2CPacket && ((EntityVelocityUpdateS2CPacket) packet).getId() == mc.player.getId() || packet instanceof ExplosionS2CPacket) && canCancel) {
if (((packet instanceof EntityVelocityUpdateS2CPacket && ((EntityVelocityUpdateS2CPacket) packet).getId() == mc.player.getId()) || packet instanceof ExplosionS2CPacket) && canCancel) {
event.cancel();
MeteorExecutor.execute(() -> {
try { Thread.sleep(20); } catch (Exception ignore) { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public enum NoSlowModes {
Vanila,
Grim,
Grim_1dot8,
Grim_New;

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public NoSlowPlus() {

public final Setting<NoSlowModes> mode = defaultGroup.add(new EnumSetting.Builder<NoSlowModes>()
.name("mode")
.description("The method of applying nofall.")
.description("The method of applying no slow.")
.defaultValue(NoSlowModes.Vanila)
.onModuleActivated(spiderModesSetting -> onModeChanged(spiderModesSetting.get()))
.onChanged(this::onModeChanged)
Expand Down Expand Up @@ -85,7 +85,7 @@ public NoSlowPlus() {
private void onModeChanged(NoSlowModes mode) {
switch (mode) {
case Vanila -> currentMode = new Vanila();
case Grim -> currentMode = new Grim();
case Grim_1dot8 -> currentMode = new Grim();
case Grim_New -> currentMode = new GrimNew();
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

public class Grim extends NoSlowMode {
public Grim() {
super(NoSlowModes.Grim);
super(NoSlowModes.Grim_1dot8);
}
@Override
public void onUse(PlayerUseMultiplierEvent event) {
Expand Down

0 comments on commit ccfa896

Please sign in to comment.