From b1651d716f6f77ca8fd0abfa92addbda12179c8e Mon Sep 17 00:00:00 2001 From: Dydzio Date: Sun, 19 Aug 2018 17:11:06 +0200 Subject: [PATCH] Stupid typo fix --- AI/VCAI/FuzzyEngines.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/AI/VCAI/FuzzyEngines.cpp b/AI/VCAI/FuzzyEngines.cpp index 2aae0cef8..9ae6e8faa 100644 --- a/AI/VCAI/FuzzyEngines.cpp +++ b/AI/VCAI/FuzzyEngines.cpp @@ -356,9 +356,9 @@ VisitObjEngine::VisitObjEngine() objectValue->addTerm(new fl::Ramp("HIGH", 5000, 20000)); objectValue->setRange(0, 20000); //relic artifact value is border value by design, even better things are scaled down. - addRule("if objectValue is HIGH then value is HIGH"); - addRule("if objectValue is MEDIUM then value is MEDIUM"); - addRule("if objectValue is LOW then value is LOW"); + addRule("if objectValue is HIGH then Value is HIGH"); + addRule("if objectValue is MEDIUM then Value is MEDIUM"); + addRule("if objectValue is LOW then Value is LOW"); } catch(fl::Exception & fe) {