1
0
Fork 0
mirror of https://github.com/Miasmusa/Shadow.git synced 2025-04-22 01:03:26 -04:00
This commit is contained in:
Saturn5Vfive 2022-04-24 13:46:15 -05:00
parent 3abe38cb82
commit 2fcfb91035
2 changed files with 2 additions and 2 deletions
src/main/java/net/shadow/client/feature/module/impl

View file

@ -19,7 +19,7 @@ public class EntityCrash extends Module {
final DoubleSetting repeat = this.config.create(new DoubleSetting.Builder(2000).min(500).max(10000).name("Power").description("how fast to crash").get());
public EntityCrash() {
super("Template", "template", ModuleType.CRASH);
super("EntityCrash", "Crash the server by punching entities", ModuleType.CRASH);
}
public Entity getNearestLikelyEntity() {

View file

@ -25,7 +25,7 @@ public class ItemPuke extends Module {
private final Random r = new Random();
public ItemPuke() {
super("ItemPuke", "throw out items really fast in creative", ModuleType.MISC);
super("ItemPuke", "Throw out items really fast in creative", ModuleType.MISC);
}
@Override