Skip to content

Commit

Permalink
fix again (#14)
Browse files Browse the repository at this point in the history
* fix again

* duplicate nametag

* compatibility
  • Loading branch information
hexadecimal233 committed Sep 25, 2022
1 parent 1fa35d6 commit 42f1ca6
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 496 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,10 @@ public WWidget getWidget(GuiTheme theme) {
WHorizontalList w = theme.horizontalList();

WButton spawn = w.add(theme.button("Spawn")).widget();
spawn.action = () -> {
FakePlayerManager.add(name.get(), health.get(), copyInv.get());
};

spawn.action = () -> FakePlayerManager.add(name.get(), health.get(), copyInv.get());

WButton clear = w.add(theme.button("Clear")).widget();
clear.action = () -> {
FakePlayerManager.add(name.get(), health.get(), copyInv.get());
};
clear.action = () -> FakePlayerManager.clear();

WButton start = w.add(theme.button("Start Recording")).widget();
WButton stop = w.add(theme.button("Stop Recording")).widget();
Expand Down
29 changes: 0 additions & 29 deletions src/main/java/me/ghosttypes/reaper/mixins/meteor/NametagMixin.java

This file was deleted.

1 change: 0 additions & 1 deletion src/main/java/me/ghosttypes/reaper/modules/ML.java
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,6 @@ public static void loadM() { // load modules in other categories
new ExternalHUD(),
new ExternalNotifications(),
//new Effects(),
new Nametags(),
new ReaperHoleESP()
);

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/me/ghosttypes/reaper/modules/misc/RPC.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public enum Logo {Default, Legacy, Letter, Red, Orange, Yellow, Green, Blue, Pur


public RPC() {
super(ML.M, "discord-presence", "Discord RPC for Reaper");
super(ML.M, "discord-presence-reaper", "Discord RPC for Reaper");
runInMainMenu = true;
}

Expand Down
Loading

0 comments on commit 42f1ca6

Please sign in to comment.