Skip to content

Commit

Permalink
fix: update trigger loading code after typo (#1357)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jettford authored Dec 24, 2023
1 parent dbf37c2 commit d2d6738
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dZoneManager/Zone.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,8 @@ void Zone::LoadLUTriggers(std::string triggerFile, SceneRef& scene) {
newCommand->target = currentCommand->Attribute("target");
if (currentCommand->Attribute("targetName")) {
newCommand->targetName = currentCommand->Attribute("targetName");
} else if (currentCommand->Attribute("args")) {
}
if (currentCommand->Attribute("args")) {
newCommand->args = currentCommand->Attribute("args");
}

Expand Down

0 comments on commit d2d6738

Please sign in to comment.