Fixed skill enchanting.
This commit is contained in:
parent
f5b5cf8ab8
commit
ddc3ef9037
@ -48,12 +48,16 @@ public final class RequestExEnchantSkill extends L2GameClientPacket
|
|||||||
private static final String _C__D0_0F_REQUESTEXENCHANTSKILL = "[C] D0:0F RequestExEnchantSkill";
|
private static final String _C__D0_0F_REQUESTEXENCHANTSKILL = "[C] D0:0F RequestExEnchantSkill";
|
||||||
private static final Logger _logEnchant = Logger.getLogger("enchant");
|
private static final Logger _logEnchant = Logger.getLogger("enchant");
|
||||||
|
|
||||||
|
@SuppressWarnings("unused")
|
||||||
|
private int _type; // TODO: Fix this.
|
||||||
|
|
||||||
private int _skillId;
|
private int _skillId;
|
||||||
private int _skillLvl;
|
private int _skillLvl;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void readImpl()
|
protected void readImpl()
|
||||||
{
|
{
|
||||||
|
_type = readD();
|
||||||
_skillId = readD();
|
_skillId = readD();
|
||||||
_skillLvl = readD();
|
_skillLvl = readD();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user