Skip to content

Commit

Permalink
Merge pull request #302 from CBATeam/fixTrueCompile
Browse files Browse the repository at this point in the history
Fix mikro converting true to 1
  • Loading branch information
Killswitch00 committed Mar 19, 2016
2 parents 43e8577 + 8e5f986 commit 0018474
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addons/main/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class CfgSettings {
// CBA requiring CBA_A3, if A3 is found
CBA_A3[] = {"cba_main_a3", {1,0,0}, "isClass(configFile >> 'CfgPatches' >> 'A3_Map_Stratis')"};

XEH[] = {"cba_xeh", {1,0,0}, "true"};
XEH[] = {"cba_xeh", {1,0,0}, "(true)"};
};
};
};
Expand Down
2 changes: 1 addition & 1 deletion addons/main_a3/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class CfgSettings {
class Versioning {
class PREFIX {
class Dependencies {
CBA[] = {"cba_main", { 1,0,0 },"true"};
CBA[] = {"cba_main", { 1,0,0 },"(true)"};
};
};
};
Expand Down

0 comments on commit 0018474

Please sign in to comment.