From eb6eae8b91eefa8f0b15685f7e418e2924a1f423 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Sun, 11 Oct 2015 00:56:06 +0200 Subject: [PATCH] fixes Issue 176 replaced wrong command; replaced == with isEqualTo --- addons/common/fnc_getGroup.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/common/fnc_getGroup.sqf b/addons/common/fnc_getGroup.sqf index ac4acc259..22b96f533 100644 --- a/addons/common/fnc_getGroup.sqf +++ b/addons/common/fnc_getGroup.sqf @@ -20,5 +20,5 @@ Author: ---------------------------------------------------------------------------- */ -if (tolower (typeName _this) == "GROUP") exitwith {_this}; +if (toUpper (typeName _this) isEqualTo "GROUP") exitwith {_this}; group _this