From 502861cc1876e1a32f5f2d57f033163a0e9cfb25 Mon Sep 17 00:00:00 2001 From: Ziggy Date: Sat, 1 Jan 2022 19:12:07 +0100 Subject: [PATCH] Removed NGE packet --- .../zone/object_controller/JumpUpdate.java | 53 ------------------- 1 file changed, 53 deletions(-) delete mode 100644 src/main/java/com/projectswg/common/network/packets/swg/zone/object_controller/JumpUpdate.java diff --git a/src/main/java/com/projectswg/common/network/packets/swg/zone/object_controller/JumpUpdate.java b/src/main/java/com/projectswg/common/network/packets/swg/zone/object_controller/JumpUpdate.java deleted file mode 100644 index c5ff12b..0000000 --- a/src/main/java/com/projectswg/common/network/packets/swg/zone/object_controller/JumpUpdate.java +++ /dev/null @@ -1,53 +0,0 @@ -/*********************************************************************************** - * Copyright (c) 2018 /// Project SWG /// www.projectswg.com * - * * - * ProjectSWG is the first NGE emulator for Star Wars Galaxies founded on * - * July 7th, 2011 after SOE announced the official shutdown of Star Wars Galaxies. * - * Our goal is to create an emulator which will provide a server for players to * - * continue playing a game similar to the one they used to play. We are basing * - * it on the final publish of the game prior to end-game events. * - * * - * This file is part of PSWGCommon. * - * * - * --------------------------------------------------------------------------------* - * * - * PSWGCommon is free software: you can redistribute it and/or modify * - * it under the terms of the GNU Affero General Public License as * - * published by the Free Software Foundation, either version 3 of the * - * License, or (at your option) any later version. * - * * - * PSWGCommon is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU Affero General Public License for more details. * - * * - * You should have received a copy of the GNU Affero General Public License * - * along with PSWGCommon. If not, see . * - ***********************************************************************************/ -package com.projectswg.common.network.packets.swg.zone.object_controller; - -import com.projectswg.common.network.NetBuffer; - -public class JumpUpdate extends ObjectController { - - public static final int CRC = 0x04BF; - - public JumpUpdate(long objectId) { - super(objectId, CRC); - } - - @Override - public void decode(NetBuffer data) { - decodeHeader(data); - - } - - @Override - public NetBuffer encode() { - NetBuffer data = NetBuffer.allocate(HEADER_LENGTH); - encodeHeader(data); - - return data; - } - -}