Spelling error on notCondition.

This commit is contained in:
Fredrik Holmqvist 2015-07-23 10:48:41 +02:00
parent 8a9464f30c
commit ff7da47aa9

View File

@ -467,6 +467,6 @@ Conditions::AddNotSafeMode(Condition* condition)
NotCondition* notCondition = new NotCondition();
notCondition->AddCondition(new SafeModeCondition());
andCondition->AddCondition(notCondtion);
andCondition->AddCondition(notCondition);
return andCondition;
}