diff --git a/src/main/java/com/minecrafttas/tasmod/registries/TASmodPackets.java b/src/main/java/com/minecrafttas/tasmod/registries/TASmodPackets.java index bb647905..cc2fdb26 100644 --- a/src/main/java/com/minecrafttas/tasmod/registries/TASmodPackets.java +++ b/src/main/java/com/minecrafttas/tasmod/registries/TASmodPackets.java @@ -97,14 +97,19 @@ public enum TASmodPackets implements PacketID { */ SAVESTATE_UNLOAD_CHUNKS, /** - *
Notifies the client to clear all inputs from the input buffer in {@link PlaybackControllerClient} - *
SIDE: Both
+ *
Clears the scoreboard on the client side + *
SIDE: Client
* ARGS: none
*/
SAVESTATE_CLEAR_SCOREBOARD(Side.CLIENT, (buf, clientID) -> {
Minecraft mc = Minecraft.getMinecraft();
((ScoreboardDuck) mc.world.getScoreboard()).clearScoreboard();
}),
+ /**
+ *
Notifies the client to clear all inputs from the input buffer in {@link PlaybackControllerClient} + *
SIDE: Both
+ * ARGS: none
+ */
PLAYBACK_CLEAR_INPUTS,
/**
*
Notifies the client to quit to the main menu and start recording inputs in {@link PlaybackControllerClient}