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"})
|
@Register({"show", "block"})
|
||||||
public void showBlockCommand(Player p) {
|
public void showBlockCommand(Player p, ShowModeParameterType... showModeParameterTypes) {
|
||||||
internalShow(p, ShowModeType.BLOCK);
|
internalShow(p, ShowModeType.BLOCK, showModeParameterTypes);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Register({"show", "particle"})
|
@Register({"show", "particle"})
|
||||||
public void showParticleCommand(Player p) {
|
public void showParticleCommand(Player p, ShowModeParameterType... showModeParameterTypes) {
|
||||||
internalShow(p, ShowModeType.PARTICLE);
|
internalShow(p, ShowModeType.PARTICLE, showModeParameterTypes);
|
||||||
}
|
}
|
||||||
|
|
||||||
private enum ShowModeType {
|
private enum ShowModeType {
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren