Fix TraceCommand.showBlockCommand and TraceCommand.showParticleCommand
Signed-off-by: yoyosource <yoyosource@nidido.de>
Dieser Commit ist enthalten in:
Ursprung
01925ff122
Commit
c79cf13cb9
@ -153,13 +153,13 @@ public class TraceCommand extends SWCommand {
|
||||
}
|
||||
|
||||
@Register({"show", "block"})
|
||||
public void showBlockCommand(Player p) {
|
||||
internalShow(p, ShowModeType.BLOCK);
|
||||
public void showBlockCommand(Player p, ShowModeParameterType... showModeParameterTypes) {
|
||||
internalShow(p, ShowModeType.BLOCK, showModeParameterTypes);
|
||||
}
|
||||
|
||||
@Register({"show", "particle"})
|
||||
public void showParticleCommand(Player p) {
|
||||
internalShow(p, ShowModeType.PARTICLE);
|
||||
public void showParticleCommand(Player p, ShowModeParameterType... showModeParameterTypes) {
|
||||
internalShow(p, ShowModeType.PARTICLE, showModeParameterTypes);
|
||||
}
|
||||
|
||||
private enum ShowModeType {
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren