Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions msu/hooks/skills/skill_container.nut
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@

q.onMovementFinished <- function( _tile )
{
this.callSkillsFunction("onMovementFinished", [
this.callSkillsFunctionWhenAlive("onMovementFinished", [
_tile
]);
}
Expand All @@ -108,7 +108,7 @@
// to crashes if any skill tries to access the current tile in its onUpdate
// function as the tile at this point is not a valid tile.

this.callSkillsFunction("onAnySkillExecuted", [
this.callSkillsFunctionWhenAlive("onAnySkillExecuted", [
_skill,
_targetTile,
_targetEntity,
Expand Down Expand Up @@ -189,7 +189,7 @@

q.onOtherActorDeath <- function( _killer, _victim, _skill, _deathTile, _corpseTile, _fatalityType )
{
this.callSkillsFunction("onOtherActorDeath", [
this.callSkillsFunctionWhenAlive("onOtherActorDeath", [
_killer,
_victim,
_skill,
Expand Down