Skip to content

Commit 528331e

Browse files
committed
Fix documentation of SAVESTATE_CLEAR_SCOREBOARD in TASmodPackets
1 parent 8001f4b commit 528331e

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/main/java/com/minecrafttas/tasmod/registries/TASmodPackets.java

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff 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}

0 commit comments

Comments
 (0)