All zones should be deactivated on entry.

This commit is contained in:
MobiusDevelopment
2021-04-29 22:35:50 +00:00
parent 79e2ecfb01
commit 922992467c
6 changed files with 6 additions and 6 deletions

View File

@@ -65,7 +65,7 @@ public class TimedHuntingZoneList implements IClientOutgoingPacket
packet.writeD(holder.getMaximumAddedTime() / 1000);
packet.writeD(holder.getRemainRefillTime());
packet.writeD(holder.getRefillTimeMax());
packet.writeC(!_isInTimedHuntingZone || _player.isInTimedHuntingZone(holder.getZoneId()) ? 1 : 0); // field activated
packet.writeC(_isInTimedHuntingZone ? 0 : 1); // field activated
}
return true;
}