Refactored loginserver packet paths to match newer branches.

This commit is contained in:
MobiusDev
2018-04-03 17:53:30 +00:00
parent ea8ee773c4
commit 9f35fd7fe6
22 changed files with 40 additions and 40 deletions

View File

@@ -22,7 +22,7 @@ import com.l2jmobius.Config;
import com.l2jmobius.gameserver.LoginServerThread; import com.l2jmobius.gameserver.LoginServerThread;
import com.l2jmobius.gameserver.handler.IAdminCommandHandler; import com.l2jmobius.gameserver.handler.IAdminCommandHandler;
import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;
import com.l2jmobius.gameserver.network.gameserverpackets.ServerStatus; import com.l2jmobius.gameserver.network.loginserverpackets.game.ServerStatus;
import com.l2jmobius.gameserver.network.serverpackets.NpcHtmlMessage; import com.l2jmobius.gameserver.network.serverpackets.NpcHtmlMessage;
/** /**

View File

@@ -53,25 +53,25 @@ import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;
import com.l2jmobius.gameserver.network.L2GameClient; import com.l2jmobius.gameserver.network.L2GameClient;
import com.l2jmobius.gameserver.network.L2GameClient.GameClientState; import com.l2jmobius.gameserver.network.L2GameClient.GameClientState;
import com.l2jmobius.gameserver.network.SystemMessageId; import com.l2jmobius.gameserver.network.SystemMessageId;
import com.l2jmobius.gameserver.network.gameserverpackets.AuthRequest; import com.l2jmobius.gameserver.network.loginserverpackets.game.AuthRequest;
import com.l2jmobius.gameserver.network.gameserverpackets.BlowFishKey; import com.l2jmobius.gameserver.network.loginserverpackets.game.BlowFishKey;
import com.l2jmobius.gameserver.network.gameserverpackets.ChangeAccessLevel; import com.l2jmobius.gameserver.network.loginserverpackets.game.ChangeAccessLevel;
import com.l2jmobius.gameserver.network.gameserverpackets.ChangePassword; import com.l2jmobius.gameserver.network.loginserverpackets.game.ChangePassword;
import com.l2jmobius.gameserver.network.gameserverpackets.PlayerAuthRequest; import com.l2jmobius.gameserver.network.loginserverpackets.game.PlayerAuthRequest;
import com.l2jmobius.gameserver.network.gameserverpackets.PlayerInGame; import com.l2jmobius.gameserver.network.loginserverpackets.game.PlayerInGame;
import com.l2jmobius.gameserver.network.gameserverpackets.PlayerLogout; import com.l2jmobius.gameserver.network.loginserverpackets.game.PlayerLogout;
import com.l2jmobius.gameserver.network.gameserverpackets.PlayerTracert; import com.l2jmobius.gameserver.network.loginserverpackets.game.PlayerTracert;
import com.l2jmobius.gameserver.network.gameserverpackets.ReplyCharacters; import com.l2jmobius.gameserver.network.loginserverpackets.game.ReplyCharacters;
import com.l2jmobius.gameserver.network.gameserverpackets.SendMail; import com.l2jmobius.gameserver.network.loginserverpackets.game.SendMail;
import com.l2jmobius.gameserver.network.gameserverpackets.ServerStatus; import com.l2jmobius.gameserver.network.loginserverpackets.game.ServerStatus;
import com.l2jmobius.gameserver.network.gameserverpackets.TempBan; import com.l2jmobius.gameserver.network.loginserverpackets.game.TempBan;
import com.l2jmobius.gameserver.network.loginserverpackets.AuthResponse; import com.l2jmobius.gameserver.network.loginserverpackets.login.AuthResponse;
import com.l2jmobius.gameserver.network.loginserverpackets.ChangePasswordResponse; import com.l2jmobius.gameserver.network.loginserverpackets.login.ChangePasswordResponse;
import com.l2jmobius.gameserver.network.loginserverpackets.InitLS; import com.l2jmobius.gameserver.network.loginserverpackets.login.InitLS;
import com.l2jmobius.gameserver.network.loginserverpackets.KickPlayer; import com.l2jmobius.gameserver.network.loginserverpackets.login.KickPlayer;
import com.l2jmobius.gameserver.network.loginserverpackets.LoginServerFail; import com.l2jmobius.gameserver.network.loginserverpackets.login.LoginServerFail;
import com.l2jmobius.gameserver.network.loginserverpackets.PlayerAuthResponse; import com.l2jmobius.gameserver.network.loginserverpackets.login.PlayerAuthResponse;
import com.l2jmobius.gameserver.network.loginserverpackets.RequestCharacters; import com.l2jmobius.gameserver.network.loginserverpackets.login.RequestCharacters;
import com.l2jmobius.gameserver.network.serverpackets.CharSelectionInfo; import com.l2jmobius.gameserver.network.serverpackets.CharSelectionInfo;
import com.l2jmobius.gameserver.network.serverpackets.LoginFail; import com.l2jmobius.gameserver.network.serverpackets.LoginFail;
import com.l2jmobius.gameserver.network.serverpackets.SystemMessage; import com.l2jmobius.gameserver.network.serverpackets.SystemMessage;

View File

@@ -41,7 +41,7 @@ import com.l2jmobius.gameserver.model.entity.Hero;
import com.l2jmobius.gameserver.model.olympiad.Olympiad; import com.l2jmobius.gameserver.model.olympiad.Olympiad;
import com.l2jmobius.gameserver.network.L2GameClient; import com.l2jmobius.gameserver.network.L2GameClient;
import com.l2jmobius.gameserver.network.SystemMessageId; import com.l2jmobius.gameserver.network.SystemMessageId;
import com.l2jmobius.gameserver.network.gameserverpackets.ServerStatus; import com.l2jmobius.gameserver.network.loginserverpackets.game.ServerStatus;
import com.l2jmobius.gameserver.network.serverpackets.ServerClose; import com.l2jmobius.gameserver.network.serverpackets.ServerClose;
import com.l2jmobius.gameserver.network.serverpackets.SystemMessage; import com.l2jmobius.gameserver.network.serverpackets.SystemMessage;
import com.l2jmobius.gameserver.util.Broadcast; import com.l2jmobius.gameserver.util.Broadcast;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package com.l2jmobius.gameserver.network.gameserverpackets; package com.l2jmobius.gameserver.network.loginserverpackets.game;
import java.util.List; import java.util.List;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package com.l2jmobius.gameserver.network.gameserverpackets; package com.l2jmobius.gameserver.network.loginserverpackets.game;
import java.security.interfaces.RSAPublicKey; import java.security.interfaces.RSAPublicKey;
import java.util.logging.Level; import java.util.logging.Level;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package com.l2jmobius.gameserver.network.gameserverpackets; package com.l2jmobius.gameserver.network.loginserverpackets.game;
import com.l2jmobius.commons.network.BaseSendablePacket; import com.l2jmobius.commons.network.BaseSendablePacket;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package com.l2jmobius.gameserver.network.gameserverpackets; package com.l2jmobius.gameserver.network.loginserverpackets.game;
import com.l2jmobius.commons.network.BaseSendablePacket; import com.l2jmobius.commons.network.BaseSendablePacket;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package com.l2jmobius.gameserver.network.gameserverpackets; package com.l2jmobius.gameserver.network.loginserverpackets.game;
import com.l2jmobius.commons.network.BaseSendablePacket; import com.l2jmobius.commons.network.BaseSendablePacket;
import com.l2jmobius.gameserver.LoginServerThread.SessionKey; import com.l2jmobius.gameserver.LoginServerThread.SessionKey;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package com.l2jmobius.gameserver.network.gameserverpackets; package com.l2jmobius.gameserver.network.loginserverpackets.game;
import java.util.List; import java.util.List;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package com.l2jmobius.gameserver.network.gameserverpackets; package com.l2jmobius.gameserver.network.loginserverpackets.game;
import com.l2jmobius.commons.network.BaseSendablePacket; import com.l2jmobius.commons.network.BaseSendablePacket;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package com.l2jmobius.gameserver.network.gameserverpackets; package com.l2jmobius.gameserver.network.loginserverpackets.game;
import com.l2jmobius.commons.network.BaseSendablePacket; import com.l2jmobius.commons.network.BaseSendablePacket;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package com.l2jmobius.gameserver.network.gameserverpackets; package com.l2jmobius.gameserver.network.loginserverpackets.game;
import java.util.List; import java.util.List;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package com.l2jmobius.gameserver.network.gameserverpackets; package com.l2jmobius.gameserver.network.loginserverpackets.game;
import com.l2jmobius.commons.network.BaseSendablePacket; import com.l2jmobius.commons.network.BaseSendablePacket;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package com.l2jmobius.gameserver.network.gameserverpackets; package com.l2jmobius.gameserver.network.loginserverpackets.game;
import java.util.ArrayList; import java.util.ArrayList;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package com.l2jmobius.gameserver.network.gameserverpackets; package com.l2jmobius.gameserver.network.loginserverpackets.game;
import com.l2jmobius.commons.network.BaseSendablePacket; import com.l2jmobius.commons.network.BaseSendablePacket;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package com.l2jmobius.gameserver.network.loginserverpackets; package com.l2jmobius.gameserver.network.loginserverpackets.login;
import com.l2jmobius.commons.network.BaseRecievePacket; import com.l2jmobius.commons.network.BaseRecievePacket;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package com.l2jmobius.gameserver.network.loginserverpackets; package com.l2jmobius.gameserver.network.loginserverpackets.login;
import com.l2jmobius.commons.network.BaseRecievePacket; import com.l2jmobius.commons.network.BaseRecievePacket;
import com.l2jmobius.gameserver.model.L2World; import com.l2jmobius.gameserver.model.L2World;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package com.l2jmobius.gameserver.network.loginserverpackets; package com.l2jmobius.gameserver.network.loginserverpackets.login;
import com.l2jmobius.commons.network.BaseRecievePacket; import com.l2jmobius.commons.network.BaseRecievePacket;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package com.l2jmobius.gameserver.network.loginserverpackets; package com.l2jmobius.gameserver.network.loginserverpackets.login;
import com.l2jmobius.commons.network.BaseRecievePacket; import com.l2jmobius.commons.network.BaseRecievePacket;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package com.l2jmobius.gameserver.network.loginserverpackets; package com.l2jmobius.gameserver.network.loginserverpackets.login;
import com.l2jmobius.commons.network.BaseRecievePacket; import com.l2jmobius.commons.network.BaseRecievePacket;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package com.l2jmobius.gameserver.network.loginserverpackets; package com.l2jmobius.gameserver.network.loginserverpackets.login;
import com.l2jmobius.commons.network.BaseRecievePacket; import com.l2jmobius.commons.network.BaseRecievePacket;

View File

@@ -14,7 +14,7 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package com.l2jmobius.gameserver.network.loginserverpackets; package com.l2jmobius.gameserver.network.loginserverpackets.login;
import com.l2jmobius.commons.network.BaseRecievePacket; import com.l2jmobius.commons.network.BaseRecievePacket;