. */ namespace GameQ\Protocols; /** * Class Terraria * * @package GameQ\Protocols * * @author Austin Bischoff */ class Terraria extends Tshock { /** * String name of this protocol class * * @type string */ protected $name = 'terraria'; /** * Longer string name of this protocol class * * @type string */ protected $name_long = "Terraria"; /** * query_port = client_port + 101 * 7878 = 7777 + 101 * * @type int */ protected $port_diff = 101; /** * The client join link * * @type string */ protected $join_link = "steam://connect/%s:%d/"; }