Changeset 2257
- Timestamp:
- 07/10/08 13:01:36 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/L2_GameServer/java/net/sf/l2j/gameserver/model/L2Character.java
r2245 r2257 3998 3998 * 3999 3999 */ 4000 public void stopMove(L2CharPosition pos) { stopMove(pos, true); }4000 public void stopMove(L2CharPosition pos) { stopMove(pos, false); } 4001 4001 public void stopMove(L2CharPosition pos, boolean updateKnownObjects) 4002 4002 { … … 4016 4016 } 4017 4017 broadcastPacket(new StopMove(this)); 4018 if (Config.MOVE_BASED_KNOWNLIST ) this.getKnownList().findObjects();4018 if (Config.MOVE_BASED_KNOWNLIST && updateKnownObjects) this.getKnownList().findObjects(); 4019 4019 } 4020 4020
