Skip to content

Commit

Permalink
ENGINES: Add prepare() call to child Trigger classes
Browse files Browse the repository at this point in the history
  • Loading branch information
rjshae authored and DrMcCoy committed Nov 3, 2018
1 parent 05cb8b4 commit 5c1025c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/engines/kotor/trigger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ Trigger::Trigger(const Aurora::GFF3Struct &gff)
: ::Engines::Trigger(),
Object(kObjectTypeTrigger) {
load(gff);
prepare();
}

void Trigger::show() {
Expand Down
1 change: 1 addition & 0 deletions src/engines/kotor2/trigger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ Trigger::Trigger(const Aurora::GFF3Struct &gff)
: ::Engines::Trigger(),
Object(kObjectTypeTrigger) {
load(gff);
prepare();
}

void Trigger::show() {
Expand Down

0 comments on commit 5c1025c

Please sign in to comment.