From df54d094945c4b815b408c0f777f14d3e96d383d Mon Sep 17 00:00:00 2001 From: dogjutsu <49013203+dogjutsu@users.noreply.github.com> Date: Fri, 2 Sep 2022 09:28:18 -0700 Subject: [PATCH] Fix usage example comment for ZONE_BASE:GetProperty() (#1775) * Fixed some typos of forms of the word 'strategy'. * Fix ZONE_BASE:GetProperty() usage example comment Co-authored-by: dogjutsu --- Moose Development/Moose/Core/Zone.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Moose Development/Moose/Core/Zone.lua b/Moose Development/Moose/Core/Zone.lua index 5529ca9ec..1ec83be66 100644 --- a/Moose Development/Moose/Core/Zone.lua +++ b/Moose Development/Moose/Core/Zone.lua @@ -572,7 +572,7 @@ end -- -- local PropertiesZone = ZONE:FindByName("Properties Zone") -- local Property = "ExampleProperty" --- local PropertyValue = PropertiesZone:GetProperty(PropertyName) +-- local PropertyValue = PropertiesZone:GetProperty(Property) -- function ZONE_BASE:GetProperty(PropertyName) return self.Properties[PropertyName]