Fixed invisible doors.

This commit is contained in:
MobiusDev
2016-07-22 23:17:01 +00:00
parent 3a84a0ea9c
commit bfa6f29dd4

View File

@@ -36,7 +36,6 @@ public class StaticObject implements IClientOutgoingPacket
private final int _maxHp; private final int _maxHp;
private final int _currentHp; private final int _currentHp;
private final boolean _showHp; private final boolean _showHp;
private final int _damageGrade;
public StaticObject(L2StaticObjectInstance staticObject) public StaticObject(L2StaticObjectInstance staticObject)
{ {
@@ -50,7 +49,6 @@ public class StaticObject implements IClientOutgoingPacket
_maxHp = 0; _maxHp = 0;
_currentHp = 0; _currentHp = 0;
_showHp = false; _showHp = false;
_damageGrade = 0;
} }
public StaticObject(L2DoorInstance door, boolean targetable) public StaticObject(L2DoorInstance door, boolean targetable)
@@ -65,7 +63,6 @@ public class StaticObject implements IClientOutgoingPacket
_maxHp = door.getMaxHp(); _maxHp = door.getMaxHp();
_currentHp = (int) door.getCurrentHp(); _currentHp = (int) door.getCurrentHp();
_showHp = door.getIsShowHp(); _showHp = door.getIsShowHp();
_damageGrade = door.getDamage();
} }
@Override @Override
@@ -83,7 +80,7 @@ public class StaticObject implements IClientOutgoingPacket
packet.writeD(_currentHp); packet.writeD(_currentHp);
packet.writeD(_maxHp); packet.writeD(_maxHp);
packet.writeD(_showHp ? 1 : 0); packet.writeD(_showHp ? 1 : 0);
packet.writeD(_damageGrade); packet.writeD(0x00);
return true; return true;
} }
} }