Removed list from MountEnabledSkillList.
This commit is contained in:
@@ -16,23 +16,16 @@
|
|||||||
*/
|
*/
|
||||||
package org.l2jmobius.gameserver.model.skills;
|
package org.l2jmobius.gameserver.model.skills;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Mobius
|
* @author Mobius
|
||||||
*/
|
*/
|
||||||
public class MountEnabledSkillList
|
public class MountEnabledSkillList
|
||||||
{
|
{
|
||||||
private static final List<Integer> ENABLED_SKILLS = new ArrayList<>(2);
|
private static final int STRIDER_SIEGE_ASSAULT = 325;
|
||||||
static
|
private static final int WYVERN_BREATH = 4289;
|
||||||
{
|
|
||||||
ENABLED_SKILLS.add(4289); // Wyvern Breath
|
|
||||||
ENABLED_SKILLS.add(325); // Strider Siege Assault
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean contains(int skillId)
|
public static boolean contains(int skillId)
|
||||||
{
|
{
|
||||||
return ENABLED_SKILLS.contains(skillId);
|
return (skillId == STRIDER_SIEGE_ASSAULT) || (skillId == WYVERN_BREATH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -16,23 +16,16 @@
|
|||||||
*/
|
*/
|
||||||
package org.l2jmobius.gameserver.model.skills;
|
package org.l2jmobius.gameserver.model.skills;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Mobius
|
* @author Mobius
|
||||||
*/
|
*/
|
||||||
public class MountEnabledSkillList
|
public class MountEnabledSkillList
|
||||||
{
|
{
|
||||||
private static final List<Integer> ENABLED_SKILLS = new ArrayList<>(2);
|
private static final int STRIDER_SIEGE_ASSAULT = 325;
|
||||||
static
|
private static final int WYVERN_BREATH = 4289;
|
||||||
{
|
|
||||||
ENABLED_SKILLS.add(4289); // Wyvern Breath
|
|
||||||
ENABLED_SKILLS.add(325); // Strider Siege Assault
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean contains(int skillId)
|
public static boolean contains(int skillId)
|
||||||
{
|
{
|
||||||
return ENABLED_SKILLS.contains(skillId);
|
return (skillId == STRIDER_SIEGE_ASSAULT) || (skillId == WYVERN_BREATH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -16,23 +16,16 @@
|
|||||||
*/
|
*/
|
||||||
package org.l2jmobius.gameserver.model.skills;
|
package org.l2jmobius.gameserver.model.skills;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Mobius
|
* @author Mobius
|
||||||
*/
|
*/
|
||||||
public class MountEnabledSkillList
|
public class MountEnabledSkillList
|
||||||
{
|
{
|
||||||
private static final List<Integer> ENABLED_SKILLS = new ArrayList<>(2);
|
private static final int STRIDER_SIEGE_ASSAULT = 325;
|
||||||
static
|
private static final int WYVERN_BREATH = 4289;
|
||||||
{
|
|
||||||
ENABLED_SKILLS.add(4289); // Wyvern Breath
|
|
||||||
ENABLED_SKILLS.add(325); // Strider Siege Assault
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean contains(int skillId)
|
public static boolean contains(int skillId)
|
||||||
{
|
{
|
||||||
return ENABLED_SKILLS.contains(skillId);
|
return (skillId == STRIDER_SIEGE_ASSAULT) || (skillId == WYVERN_BREATH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -16,23 +16,16 @@
|
|||||||
*/
|
*/
|
||||||
package org.l2jmobius.gameserver.model.skills;
|
package org.l2jmobius.gameserver.model.skills;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Mobius
|
* @author Mobius
|
||||||
*/
|
*/
|
||||||
public class MountEnabledSkillList
|
public class MountEnabledSkillList
|
||||||
{
|
{
|
||||||
private static final List<Integer> ENABLED_SKILLS = new ArrayList<>(2);
|
private static final int STRIDER_SIEGE_ASSAULT = 325;
|
||||||
static
|
private static final int WYVERN_BREATH = 4289;
|
||||||
{
|
|
||||||
ENABLED_SKILLS.add(4289); // Wyvern Breath
|
|
||||||
ENABLED_SKILLS.add(325); // Strider Siege Assault
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean contains(int skillId)
|
public static boolean contains(int skillId)
|
||||||
{
|
{
|
||||||
return ENABLED_SKILLS.contains(skillId);
|
return (skillId == STRIDER_SIEGE_ASSAULT) || (skillId == WYVERN_BREATH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -16,23 +16,16 @@
|
|||||||
*/
|
*/
|
||||||
package org.l2jmobius.gameserver.model.skills;
|
package org.l2jmobius.gameserver.model.skills;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Mobius
|
* @author Mobius
|
||||||
*/
|
*/
|
||||||
public class MountEnabledSkillList
|
public class MountEnabledSkillList
|
||||||
{
|
{
|
||||||
private static final List<Integer> ENABLED_SKILLS = new ArrayList<>(2);
|
private static final int STRIDER_SIEGE_ASSAULT = 325;
|
||||||
static
|
private static final int WYVERN_BREATH = 4289;
|
||||||
{
|
|
||||||
ENABLED_SKILLS.add(4289); // Wyvern Breath
|
|
||||||
ENABLED_SKILLS.add(325); // Strider Siege Assault
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean contains(int skillId)
|
public static boolean contains(int skillId)
|
||||||
{
|
{
|
||||||
return ENABLED_SKILLS.contains(skillId);
|
return (skillId == STRIDER_SIEGE_ASSAULT) || (skillId == WYVERN_BREATH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -16,23 +16,16 @@
|
|||||||
*/
|
*/
|
||||||
package org.l2jmobius.gameserver.model.skills;
|
package org.l2jmobius.gameserver.model.skills;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Mobius
|
* @author Mobius
|
||||||
*/
|
*/
|
||||||
public class MountEnabledSkillList
|
public class MountEnabledSkillList
|
||||||
{
|
{
|
||||||
private static final List<Integer> ENABLED_SKILLS = new ArrayList<>(2);
|
private static final int STRIDER_SIEGE_ASSAULT = 325;
|
||||||
static
|
private static final int WYVERN_BREATH = 4289;
|
||||||
{
|
|
||||||
ENABLED_SKILLS.add(4289); // Wyvern Breath
|
|
||||||
ENABLED_SKILLS.add(325); // Strider Siege Assault
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean contains(int skillId)
|
public static boolean contains(int skillId)
|
||||||
{
|
{
|
||||||
return ENABLED_SKILLS.contains(skillId);
|
return (skillId == STRIDER_SIEGE_ASSAULT) || (skillId == WYVERN_BREATH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -16,23 +16,16 @@
|
|||||||
*/
|
*/
|
||||||
package org.l2jmobius.gameserver.model.skills;
|
package org.l2jmobius.gameserver.model.skills;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Mobius
|
* @author Mobius
|
||||||
*/
|
*/
|
||||||
public class MountEnabledSkillList
|
public class MountEnabledSkillList
|
||||||
{
|
{
|
||||||
private static final List<Integer> ENABLED_SKILLS = new ArrayList<>(2);
|
private static final int STRIDER_SIEGE_ASSAULT = 325;
|
||||||
static
|
private static final int WYVERN_BREATH = 4289;
|
||||||
{
|
|
||||||
ENABLED_SKILLS.add(4289); // Wyvern Breath
|
|
||||||
ENABLED_SKILLS.add(325); // Strider Siege Assault
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean contains(int skillId)
|
public static boolean contains(int skillId)
|
||||||
{
|
{
|
||||||
return ENABLED_SKILLS.contains(skillId);
|
return (skillId == STRIDER_SIEGE_ASSAULT) || (skillId == WYVERN_BREATH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -16,23 +16,16 @@
|
|||||||
*/
|
*/
|
||||||
package org.l2jmobius.gameserver.model.skills;
|
package org.l2jmobius.gameserver.model.skills;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Mobius
|
* @author Mobius
|
||||||
*/
|
*/
|
||||||
public class MountEnabledSkillList
|
public class MountEnabledSkillList
|
||||||
{
|
{
|
||||||
private static final List<Integer> ENABLED_SKILLS = new ArrayList<>(2);
|
private static final int STRIDER_SIEGE_ASSAULT = 325;
|
||||||
static
|
private static final int WYVERN_BREATH = 4289;
|
||||||
{
|
|
||||||
ENABLED_SKILLS.add(4289); // Wyvern Breath
|
|
||||||
ENABLED_SKILLS.add(325); // Strider Siege Assault
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean contains(int skillId)
|
public static boolean contains(int skillId)
|
||||||
{
|
{
|
||||||
return ENABLED_SKILLS.contains(skillId);
|
return (skillId == STRIDER_SIEGE_ASSAULT) || (skillId == WYVERN_BREATH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -16,23 +16,16 @@
|
|||||||
*/
|
*/
|
||||||
package org.l2jmobius.gameserver.model.skills;
|
package org.l2jmobius.gameserver.model.skills;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Mobius
|
* @author Mobius
|
||||||
*/
|
*/
|
||||||
public class MountEnabledSkillList
|
public class MountEnabledSkillList
|
||||||
{
|
{
|
||||||
private static final List<Integer> ENABLED_SKILLS = new ArrayList<>(2);
|
private static final int STRIDER_SIEGE_ASSAULT = 325;
|
||||||
static
|
private static final int WYVERN_BREATH = 4289;
|
||||||
{
|
|
||||||
ENABLED_SKILLS.add(4289); // Wyvern Breath
|
|
||||||
ENABLED_SKILLS.add(325); // Strider Siege Assault
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean contains(int skillId)
|
public static boolean contains(int skillId)
|
||||||
{
|
{
|
||||||
return ENABLED_SKILLS.contains(skillId);
|
return (skillId == STRIDER_SIEGE_ASSAULT) || (skillId == WYVERN_BREATH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -16,23 +16,16 @@
|
|||||||
*/
|
*/
|
||||||
package org.l2jmobius.gameserver.model.skills;
|
package org.l2jmobius.gameserver.model.skills;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Mobius
|
* @author Mobius
|
||||||
*/
|
*/
|
||||||
public class MountEnabledSkillList
|
public class MountEnabledSkillList
|
||||||
{
|
{
|
||||||
private static final List<Integer> ENABLED_SKILLS = new ArrayList<>(2);
|
private static final int STRIDER_SIEGE_ASSAULT = 325;
|
||||||
static
|
private static final int WYVERN_BREATH = 4289;
|
||||||
{
|
|
||||||
ENABLED_SKILLS.add(4289); // Wyvern Breath
|
|
||||||
ENABLED_SKILLS.add(325); // Strider Siege Assault
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean contains(int skillId)
|
public static boolean contains(int skillId)
|
||||||
{
|
{
|
||||||
return ENABLED_SKILLS.contains(skillId);
|
return (skillId == STRIDER_SIEGE_ASSAULT) || (skillId == WYVERN_BREATH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -16,23 +16,16 @@
|
|||||||
*/
|
*/
|
||||||
package org.l2jmobius.gameserver.model.skills;
|
package org.l2jmobius.gameserver.model.skills;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Mobius
|
* @author Mobius
|
||||||
*/
|
*/
|
||||||
public class MountEnabledSkillList
|
public class MountEnabledSkillList
|
||||||
{
|
{
|
||||||
private static final List<Integer> ENABLED_SKILLS = new ArrayList<>(2);
|
private static final int STRIDER_SIEGE_ASSAULT = 325;
|
||||||
static
|
private static final int WYVERN_BREATH = 4289;
|
||||||
{
|
|
||||||
ENABLED_SKILLS.add(4289); // Wyvern Breath
|
|
||||||
ENABLED_SKILLS.add(325); // Strider Siege Assault
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean contains(int skillId)
|
public static boolean contains(int skillId)
|
||||||
{
|
{
|
||||||
return ENABLED_SKILLS.contains(skillId);
|
return (skillId == STRIDER_SIEGE_ASSAULT) || (skillId == WYVERN_BREATH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -16,23 +16,16 @@
|
|||||||
*/
|
*/
|
||||||
package org.l2jmobius.gameserver.model.skills;
|
package org.l2jmobius.gameserver.model.skills;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Mobius
|
* @author Mobius
|
||||||
*/
|
*/
|
||||||
public class MountEnabledSkillList
|
public class MountEnabledSkillList
|
||||||
{
|
{
|
||||||
private static final List<Integer> ENABLED_SKILLS = new ArrayList<>(2);
|
private static final int STRIDER_SIEGE_ASSAULT = 325;
|
||||||
static
|
private static final int WYVERN_BREATH = 4289;
|
||||||
{
|
|
||||||
ENABLED_SKILLS.add(4289); // Wyvern Breath
|
|
||||||
ENABLED_SKILLS.add(325); // Strider Siege Assault
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean contains(int skillId)
|
public static boolean contains(int skillId)
|
||||||
{
|
{
|
||||||
return ENABLED_SKILLS.contains(skillId);
|
return (skillId == STRIDER_SIEGE_ASSAULT) || (skillId == WYVERN_BREATH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -16,23 +16,16 @@
|
|||||||
*/
|
*/
|
||||||
package org.l2jmobius.gameserver.model.skills;
|
package org.l2jmobius.gameserver.model.skills;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Mobius
|
* @author Mobius
|
||||||
*/
|
*/
|
||||||
public class MountEnabledSkillList
|
public class MountEnabledSkillList
|
||||||
{
|
{
|
||||||
private static final List<Integer> ENABLED_SKILLS = new ArrayList<>(2);
|
private static final int STRIDER_SIEGE_ASSAULT = 325;
|
||||||
static
|
private static final int WYVERN_BREATH = 4289;
|
||||||
{
|
|
||||||
ENABLED_SKILLS.add(4289); // Wyvern Breath
|
|
||||||
ENABLED_SKILLS.add(325); // Strider Siege Assault
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean contains(int skillId)
|
public static boolean contains(int skillId)
|
||||||
{
|
{
|
||||||
return ENABLED_SKILLS.contains(skillId);
|
return (skillId == STRIDER_SIEGE_ASSAULT) || (skillId == WYVERN_BREATH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -16,23 +16,16 @@
|
|||||||
*/
|
*/
|
||||||
package org.l2jmobius.gameserver.model.skills;
|
package org.l2jmobius.gameserver.model.skills;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Mobius
|
* @author Mobius
|
||||||
*/
|
*/
|
||||||
public class MountEnabledSkillList
|
public class MountEnabledSkillList
|
||||||
{
|
{
|
||||||
private static final List<Integer> ENABLED_SKILLS = new ArrayList<>(2);
|
private static final int STRIDER_SIEGE_ASSAULT = 325;
|
||||||
static
|
private static final int WYVERN_BREATH = 4289;
|
||||||
{
|
|
||||||
ENABLED_SKILLS.add(4289); // Wyvern Breath
|
|
||||||
ENABLED_SKILLS.add(325); // Strider Siege Assault
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean contains(int skillId)
|
public static boolean contains(int skillId)
|
||||||
{
|
{
|
||||||
return ENABLED_SKILLS.contains(skillId);
|
return (skillId == STRIDER_SIEGE_ASSAULT) || (skillId == WYVERN_BREATH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -16,23 +16,16 @@
|
|||||||
*/
|
*/
|
||||||
package org.l2jmobius.gameserver.model.skills;
|
package org.l2jmobius.gameserver.model.skills;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Mobius
|
* @author Mobius
|
||||||
*/
|
*/
|
||||||
public class MountEnabledSkillList
|
public class MountEnabledSkillList
|
||||||
{
|
{
|
||||||
private static final List<Integer> ENABLED_SKILLS = new ArrayList<>(2);
|
private static final int STRIDER_SIEGE_ASSAULT = 325;
|
||||||
static
|
private static final int WYVERN_BREATH = 4289;
|
||||||
{
|
|
||||||
ENABLED_SKILLS.add(4289); // Wyvern Breath
|
|
||||||
ENABLED_SKILLS.add(325); // Strider Siege Assault
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean contains(int skillId)
|
public static boolean contains(int skillId)
|
||||||
{
|
{
|
||||||
return ENABLED_SKILLS.contains(skillId);
|
return (skillId == STRIDER_SIEGE_ASSAULT) || (skillId == WYVERN_BREATH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -16,23 +16,16 @@
|
|||||||
*/
|
*/
|
||||||
package org.l2jmobius.gameserver.model.skills;
|
package org.l2jmobius.gameserver.model.skills;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Mobius
|
* @author Mobius
|
||||||
*/
|
*/
|
||||||
public class MountEnabledSkillList
|
public class MountEnabledSkillList
|
||||||
{
|
{
|
||||||
private static final List<Integer> ENABLED_SKILLS = new ArrayList<>(2);
|
private static final int STRIDER_SIEGE_ASSAULT = 325;
|
||||||
static
|
private static final int WYVERN_BREATH = 4289;
|
||||||
{
|
|
||||||
ENABLED_SKILLS.add(4289); // Wyvern Breath
|
|
||||||
ENABLED_SKILLS.add(325); // Strider Siege Assault
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean contains(int skillId)
|
public static boolean contains(int skillId)
|
||||||
{
|
{
|
||||||
return ENABLED_SKILLS.contains(skillId);
|
return (skillId == STRIDER_SIEGE_ASSAULT) || (skillId == WYVERN_BREATH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -16,23 +16,16 @@
|
|||||||
*/
|
*/
|
||||||
package org.l2jmobius.gameserver.model.skills;
|
package org.l2jmobius.gameserver.model.skills;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Mobius
|
* @author Mobius
|
||||||
*/
|
*/
|
||||||
public class MountEnabledSkillList
|
public class MountEnabledSkillList
|
||||||
{
|
{
|
||||||
private static final List<Integer> ENABLED_SKILLS = new ArrayList<>(2);
|
private static final int STRIDER_SIEGE_ASSAULT = 325;
|
||||||
static
|
private static final int WYVERN_BREATH = 4289;
|
||||||
{
|
|
||||||
ENABLED_SKILLS.add(4289); // Wyvern Breath
|
|
||||||
ENABLED_SKILLS.add(325); // Strider Siege Assault
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean contains(int skillId)
|
public static boolean contains(int skillId)
|
||||||
{
|
{
|
||||||
return ENABLED_SKILLS.contains(skillId);
|
return (skillId == STRIDER_SIEGE_ASSAULT) || (skillId == WYVERN_BREATH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -16,23 +16,16 @@
|
|||||||
*/
|
*/
|
||||||
package org.l2jmobius.gameserver.model.skills;
|
package org.l2jmobius.gameserver.model.skills;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Mobius
|
* @author Mobius
|
||||||
*/
|
*/
|
||||||
public class MountEnabledSkillList
|
public class MountEnabledSkillList
|
||||||
{
|
{
|
||||||
private static final List<Integer> ENABLED_SKILLS = new ArrayList<>(2);
|
private static final int STRIDER_SIEGE_ASSAULT = 325;
|
||||||
static
|
private static final int WYVERN_BREATH = 4289;
|
||||||
{
|
|
||||||
ENABLED_SKILLS.add(4289); // Wyvern Breath
|
|
||||||
ENABLED_SKILLS.add(325); // Strider Siege Assault
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean contains(int skillId)
|
public static boolean contains(int skillId)
|
||||||
{
|
{
|
||||||
return ENABLED_SKILLS.contains(skillId);
|
return (skillId == STRIDER_SIEGE_ASSAULT) || (skillId == WYVERN_BREATH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -16,23 +16,16 @@
|
|||||||
*/
|
*/
|
||||||
package org.l2jmobius.gameserver.model.skills;
|
package org.l2jmobius.gameserver.model.skills;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Mobius
|
* @author Mobius
|
||||||
*/
|
*/
|
||||||
public class MountEnabledSkillList
|
public class MountEnabledSkillList
|
||||||
{
|
{
|
||||||
private static final List<Integer> ENABLED_SKILLS = new ArrayList<>(2);
|
private static final int STRIDER_SIEGE_ASSAULT = 325;
|
||||||
static
|
private static final int WYVERN_BREATH = 4289;
|
||||||
{
|
|
||||||
ENABLED_SKILLS.add(4289); // Wyvern Breath
|
|
||||||
ENABLED_SKILLS.add(325); // Strider Siege Assault
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean contains(int skillId)
|
public static boolean contains(int skillId)
|
||||||
{
|
{
|
||||||
return ENABLED_SKILLS.contains(skillId);
|
return (skillId == STRIDER_SIEGE_ASSAULT) || (skillId == WYVERN_BREATH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -16,23 +16,16 @@
|
|||||||
*/
|
*/
|
||||||
package org.l2jmobius.gameserver.model.skills;
|
package org.l2jmobius.gameserver.model.skills;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Mobius
|
* @author Mobius
|
||||||
*/
|
*/
|
||||||
public class MountEnabledSkillList
|
public class MountEnabledSkillList
|
||||||
{
|
{
|
||||||
private static final List<Integer> ENABLED_SKILLS = new ArrayList<>(2);
|
private static final int STRIDER_SIEGE_ASSAULT = 325;
|
||||||
static
|
private static final int WYVERN_BREATH = 4289;
|
||||||
{
|
|
||||||
ENABLED_SKILLS.add(4289); // Wyvern Breath
|
|
||||||
ENABLED_SKILLS.add(325); // Strider Siege Assault
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean contains(int skillId)
|
public static boolean contains(int skillId)
|
||||||
{
|
{
|
||||||
return ENABLED_SKILLS.contains(skillId);
|
return (skillId == STRIDER_SIEGE_ASSAULT) || (skillId == WYVERN_BREATH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -16,23 +16,16 @@
|
|||||||
*/
|
*/
|
||||||
package org.l2jmobius.gameserver.model.skills;
|
package org.l2jmobius.gameserver.model.skills;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Mobius
|
* @author Mobius
|
||||||
*/
|
*/
|
||||||
public class MountEnabledSkillList
|
public class MountEnabledSkillList
|
||||||
{
|
{
|
||||||
private static final List<Integer> ENABLED_SKILLS = new ArrayList<>(2);
|
private static final int STRIDER_SIEGE_ASSAULT = 325;
|
||||||
static
|
private static final int WYVERN_BREATH = 4289;
|
||||||
{
|
|
||||||
ENABLED_SKILLS.add(4289); // Wyvern Breath
|
|
||||||
ENABLED_SKILLS.add(325); // Strider Siege Assault
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean contains(int skillId)
|
public static boolean contains(int skillId)
|
||||||
{
|
{
|
||||||
return ENABLED_SKILLS.contains(skillId);
|
return (skillId == STRIDER_SIEGE_ASSAULT) || (skillId == WYVERN_BREATH);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user