. */ namespace GameQ\Protocols; /** * Minecraft Bedrock Edition (BE) Protocol Class * * @package GameQ\Protocols * * @author Austin Bischoff */ class Minecraftbe extends Raknet { /** * String name of this protocol class * * @type string */ protected $name = 'minecraftbe'; /** * Longer string name of this protocol class * * @type string */ protected $name_long = "Minecraft Bedrock Edition"; /** * Normalize settings for this protocol * * @type array */ protected $normalize = [ // General 'general' => [ // target => source 'dedicated' => 'dedicated', 'gametype' => 'edition', 'hostname' => 'motd_line_1', 'maxplayers' => 'max_players', 'mod' => 'gamemode', 'numplayers' => 'num_players', ], ]; }