- prototype - between client and server, allow to capture all exchanges and potentially change them - created to capture server maps in laby - first test get only MapBlock, support version serialization version 28 - prepartion for 29 with zstd but untested. # Conflicts: # fetch_dependencies.sh
11 lines
180 B
Java
11 lines
180 B
Java
package org.artisanlogiciel.games.minetest.core;
|
|
|
|
public class PacketException
|
|
extends Exception
|
|
{
|
|
public PacketException(String message)
|
|
{
|
|
super(message);
|
|
}
|
|
}
|