Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 0.61 KB | None | 0 0
  1. Index: java/com/l2jserver/gameserver/model/actor/AbstractL2PcInstance.java
  2. ===================================================================
  3. --- java/com/l2jserver/gameserver/model/actor/AbstractL2PcInstance.java (revision 493)
  4. +++ java/com/l2jserver/gameserver/model/actor/AbstractL2PcInstance.java (working copy)
  5. @@ -2998,6 +2998,14 @@
  6.     }
  7.    
  8.     /**
  9. +    * Return True if the L2PcInstance is standing still (not moving).<BR><BR>
  10. +    */
  11. +   public boolean isStanding()
  12. +   {
  13. +       return !isSitting() && !isMoving();
  14. +   }
  15. +  
  16. +   /**
  17.      * Set _waitTypeSitting to given value
  18.      */
  19.     public void setIsSitting(boolean state)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement