diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/tracer/TraceCommand.java b/BauSystem_Main/src/de/steamwar/bausystem/features/tracer/TraceCommand.java index 7df193fd..f526babd 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/tracer/TraceCommand.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/tracer/TraceCommand.java @@ -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 {