1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-06 07:32:46 +00:00

New packet naming

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-29 20:43:39 -03:00
parent 7663647fd1
commit b332a10130
68 changed files with 328 additions and 330 deletions

View File

@@ -16,7 +16,7 @@
*/
package com.l2jserver.game.net;
import com.l2jserver.game.net.packet.server.SystemMessagePacket;
import com.l2jserver.game.net.packet.server.SM_SYSTEM_MESSAGE;
/**
* @author <a href="http://www.rogiel.com">Rogiel</a>
@@ -15207,10 +15207,10 @@ public enum SystemMessage {
THOMAS_D_TURKEY_DISAPPEARED(6505);
public final int id;
public final SystemMessagePacket packet;
public final SM_SYSTEM_MESSAGE packet;
SystemMessage(int id) {
this.id = id;
this.packet = new SystemMessagePacket(this);
this.packet = new SM_SYSTEM_MESSAGE(this);
}
}