Skip to content

Commit

Permalink
fix error popup in Arsenal Garage (#1094)
Browse files Browse the repository at this point in the history
* fix error popup in Arsenal Garage

* auto update version number
  • Loading branch information
commy2 committed Mar 9, 2019
1 parent 0d29fc6 commit c44e419
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 3 additions & 0 deletions addons/ai/CfgVehicles.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ class CfgVehicles {
class B_TargetSoldier;
class CBA_B_InvisibleTarget: B_TargetSoldier {
scope = 2;
scopeArsenal = 0;
model = QPATHTOF(InvisibleTarget.p3d);
icon = "CBA_iconInvisibleTarget";

Expand All @@ -11,6 +12,7 @@ class CfgVehicles {
class O_TargetSoldier;
class CBA_O_InvisibleTarget: O_TargetSoldier {
scope = 2;
scopeArsenal = 0;
model = QPATHTOF(InvisibleTarget.p3d);
icon = "CBA_iconInvisibleTarget";

Expand All @@ -20,6 +22,7 @@ class CfgVehicles {
class I_TargetSoldier;
class CBA_I_InvisibleTarget: I_TargetSoldier {
scope = 2;
scopeArsenal = 0;
model = QPATHTOF(InvisibleTarget.p3d);
icon = "CBA_iconInvisibleTarget";

Expand Down
4 changes: 1 addition & 3 deletions addons/main_a3/CfgMods.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@ class CfgMods {
class PREFIX {
author = "$STR_CBA_Author";
dir = "@CBA_A3";
name = "Community Base Addons v3.9.1";
name = "Community Base Addons v0.0.0";
picture = "x\cba\addons\main\logo_cba_ca.paa";
hidePicture = 1;
hideName = 1;
actionName = "Website";
action = "$STR_CBA_URL";
description = "Bugtracker: https://github.com/CBATeam/CBA_A3/issues<br/>Documentation: https://github.com/CBATeam/CBA_A3/wiki";
logo = "logo_cba_ca.paa";
logoOver = "logo_cba_ca.paa";
tooltip = "Community Base Addons";
tooltipOwned = "Community Base Addons Owned";
overview = "What does the name Community Base Addons mean? It is a system that offers a range of features for addon-makers and mission designers. This includes a collection of community-built functions, an integrated keybinding system, and extend event-handler support for compatibility with other 3rd-party addons; and much much more.";
Expand Down
4 changes: 2 additions & 2 deletions tools/make.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
pbo_name_prefix = "cba_"
signature_blacklist = []
importantFiles = ["mod.cpp", "meta.cpp", "README.md", "LICENSE.md", "logo_cba_ca.paa"]
versionFiles = ["mod.cpp"]
versionFiles = ["mod.cpp","addons\main_a3\CfgMods.hpp"]

ciBuild = False # Used for CI builds

Expand Down Expand Up @@ -1504,4 +1504,4 @@ def main(argv):
if ciBuild:
sys.exit(0)

input("Press Enter to continue...")
input("Press Enter to continue...")

0 comments on commit c44e419

Please sign in to comment.