Skip to content

Commit

Permalink
refactor: rename checkFleeStopAction -> checkFleeContinueAction (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob-Rueckert committed Apr 20, 2022
1 parent b75947a commit c491071
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion assets/behaviors/creatures/critter.behavior
Expand Up @@ -5,7 +5,7 @@
componentPresent: "Behaviors:Fleeing",
child: {
sequence: [
check_flee_stop,
check_flee_continue,
{ lookup: { tree: "Behaviors:flee" } }
]
}
Expand Down
Expand Up @@ -14,10 +14,10 @@
import org.terasology.engine.logic.location.LocationComponent;


@BehaviorAction(name = "check_flee_stop")
public class CheckFleeStopAction extends BaseAction {
@BehaviorAction(name = "check_flee_continue")
public class CheckFleeContinueAction extends BaseAction {

private static final Logger logger = LoggerFactory.getLogger(CheckFleeStopAction.class);
private static final Logger logger = LoggerFactory.getLogger(CheckFleeContinueAction.class);

@Override
public BehaviorState modify(Actor actor, BehaviorState result) {
Expand Down

0 comments on commit c491071

Please sign in to comment.