Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,10 @@ public void callSyncedAction(String mapKey, Consumer<PacketBuffer> packetBuilder
callSyncedAction(mapKey, packet);
}

public void callSyncedAction(String mapKey) {
callSyncedAction(mapKey, new PacketBuffer(Unpooled.buffer(0)));
}

@Override
public <T extends SyncHandler> T getOrCreateSyncHandler(String name, int id, Class<T> clazz, Supplier<T> supplier) {
SyncHandler syncHandler = findSyncHandlerNullable(name, id);
Expand Down