File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
src/main/java/com/minecrafttas/tasmod/registries Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -97,14 +97,19 @@ public enum TASmodPackets implements PacketID {
9797 */
9898 SAVESTATE_UNLOAD_CHUNKS ,
9999 /**
100- * <p>Notifies the client to clear all inputs from the input buffer in {@link PlaybackControllerClient}
101- * <p>SIDE: Both <br>
100+ * <p>Clears the scoreboard on the client side
101+ * <p>SIDE: Client <br>
102102 * ARGS: none
103103 */
104104 SAVESTATE_CLEAR_SCOREBOARD (Side .CLIENT , (buf , clientID ) -> {
105105 Minecraft mc = Minecraft .getMinecraft ();
106106 ((ScoreboardDuck ) mc .world .getScoreboard ()).clearScoreboard ();
107107 }),
108+ /**
109+ * <p>Notifies the client to clear all inputs from the input buffer in {@link PlaybackControllerClient}
110+ * <p>SIDE: Both<br>
111+ * ARGS: none
112+ */
108113 PLAYBACK_CLEAR_INPUTS ,
109114 /**
110115 * <p>Notifies the client to quit to the main menu and start recording inputs in {@link PlaybackControllerClient}
You can’t perform that action at this time.
0 commit comments