|
@@ -64,10 +64,10 @@ import net.sf.l2j.util.Rnd;
|
|
|
*/
|
|
|
public class L2CharacterAI extends AbstractAI
|
|
|
{
|
|
|
- class IntentionCommand
|
|
|
+ public class IntentionCommand
|
|
|
{
|
|
|
- protected CtrlIntention _crtlIntention;
|
|
|
- protected Object _arg0, _arg1;
|
|
|
+ protected final CtrlIntention _crtlIntention;
|
|
|
+ protected final Object _arg0, _arg1;
|
|
|
|
|
|
protected IntentionCommand(CtrlIntention pIntention, Object pArg0, Object pArg1)
|
|
|
{
|
|
@@ -75,6 +75,11 @@ public class L2CharacterAI extends AbstractAI
|
|
|
_arg0 = pArg0;
|
|
|
_arg1 = pArg1;
|
|
|
}
|
|
|
+
|
|
|
+ public CtrlIntention getCtrlIntention()
|
|
|
+ {
|
|
|
+ return _crtlIntention;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/**
|