Compile bug fixes.

This commit is contained in:
whipowill
2022-05-18 15:57:50 -05:00
parent 16ef1fc76c
commit 8aba7afca7
5 changed files with 7 additions and 7 deletions

View File

@@ -39,7 +39,7 @@ class Trigger : public AiNamedObject
class TriggerNode
{
public:
TriggerNode(std::string const name, NextAction** handlers = nullptr) : trigger(nullptr), name(name), handlers(handlers) { } // reorder args - whipowill
TriggerNode(std::string const name, NextAction** handlers = nullptr) : trigger(nullptr), handlers(handlers), name(name) { } // reorder args - whipowill
virtual ~TriggerNode()
{