Skip to content

Commit

Permalink
fix some final errors
Browse files Browse the repository at this point in the history
  • Loading branch information
coelckers committed Nov 12, 2023
1 parent 19f52dc commit 2897fbb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions wadsrc/static/zscript/games/blood/bloodactor.zs
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,7 @@ native void aiPatrolMove();
native void aiPatrolThink();
native void aiPatrolRandGoalAng();
native void aiPatrolTurn();
native void enterDeath();

native void FireballSeqCallback();
native void Fx33Callback();
Expand Down
2 changes: 1 addition & 1 deletion wadsrc/static/zscript/games/blood/states.zs
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ extend class BloodActor
AIState "genPatrolState_47", "+10", kAiStatePatrolTurnC, 0, null, aiPatrolRandGoalAng, aiPatrolTurn, aiPatrolThink, "none";
AIState "genPatrolState_48", "+9", kAiStatePatrolTurnC, 0, null, aiPatrolRandGoalAng, aiPatrolTurn, aiPatrolThink, "none";
AIState "genPatrolState_49", "+4", kAiStatePatrolTurnC, 0, null, aiPatrolRandGoalAng, aiPatrolTurn, aiPatrolThink, "none";
AISTATE "cdudeDeath", "+-1", kAiStateOther, 0, null, enterDeath, null, null, null;
AISTATE "cdudeDeath", "+-1", kAiStateOther, 0, null, enterDeath, null, null;

}
}

0 comments on commit 2897fbb

Please sign in to comment.