annotations quick fix

This commit is contained in:
ThisIsALegitUsername 2023-02-02 16:32:03 +00:00
parent 708e0d68c7
commit 30cce3bdf4
2 changed files with 1 additions and 7 deletions

View File

@ -5,9 +5,4 @@ import dev.resent.module.base.Category;
import dev.resent.module.base.Mod; import dev.resent.module.base.Mod;
@Module(name = "Animations", category = Category.MISC) @Module(name = "Animations", category = Category.MISC)
public class Animations extends Mod { public class Animations extends Mod { }
public Animations() {
super("Animations", Category.MISC);
}
}

View File

@ -9,7 +9,6 @@ import dev.resent.module.setting.BooleanSetting;
public class AutoGG extends Mod { public class AutoGG extends Mod {
public AutoGG() { public AutoGG() {
super("AutoGG", Category.MISC, true);
addSetting(rep, onLose, onWin); addSetting(rep, onLose, onWin);
} }