Skip to content

Commit 692f29f

Browse files
Fix typos: murders -> murderers
1 parent 71bed0e commit 692f29f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/net/wurstclient/commands/MurderMysteryCmd.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public class MurderMysteryCmd extends Command
1111
public MurderMysteryCmd()
1212
{
1313
super("mm",
14-
"Manages current MurderMystery session statistics and information about detected murders and detectives.",
14+
"Manages current MurderMystery session statistics and information about detected murderers and detectives.",
1515
"", "Statistics: .mm [stat]",
1616
"Clear list(-s): .mm clear [all|m|d]");
1717
}

src/main/java/net/wurstclient/hacks/MurderMysteryHack.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public String getMurderersCommaSeparatedEnumerationString()
9494
{
9595
String s = murderers.stream().map(m -> m.getName().getString())
9696
.collect(Collectors.joining(", "));
97-
return cMurders:§r " + (s.isEmpty() ? "§o<Empty>§r" : s);
97+
return cMurderers:§r " + (s.isEmpty() ? "§o<Empty>§r" : s);
9898
}
9999

100100
private final ArrayList<PlayerEntity> detectives = new ArrayList<>();

0 commit comments

Comments
 (0)