Skip to content
This repository has been archived by the owner on Jan 19, 2019. It is now read-only.

Important Fix #20

Open
marcoviny opened this issue Dec 3, 2018 · 0 comments
Open

Important Fix #20

marcoviny opened this issue Dec 3, 2018 · 0 comments

Comments

@marcoviny
Copy link

This Important fix ( SkillsS Short in AI no have effect, [ the effect in short is because delay skills if remove delay skills confirm this issue])

Index: java/com/elfocrash/roboto/model/BotSkill.java

--- java/com/elfocrash/roboto/model/BotSkill.java (nonexistent)
+++ java/com/elfocrash/roboto/model/BotSkill.java (working copy)
@@ -0,0 +1,88 @@
package com.elfocrash.roboto.model;

public abstract class BotSkill
{
protected int _skillId;
protected SpellUsageCondition _condition;
protected int _conditionValue;
protected int _priority;

public BotSkill(int skillId, SpellUsageCondition condition, int conditionValue, int priority)
{
	_skillId = skillId;
	_condition = condition;
	_conditionValue = conditionValue;
  •   _priority = priority;
    

    }

    public BotSkill(int skillId)
    {
    _skillId = skillId;
    _condition = SpellUsageCondition.NONE;

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant