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

Important Fix #20

@marcoviny

Description

@marcoviny

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;

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions