Skip to content

Commit

Permalink
Fix author[], add script_component.hpp to funcs
Browse files Browse the repository at this point in the history
  • Loading branch information
Wired-Tiger committed Jun 2, 2016
1 parent df4c6e0 commit 5b1a6bf
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
3 changes: 2 additions & 1 deletion addons/modules/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ class CfgPatches {
units[] = {"CBA_ModuleAttack","CBA_ModuleDefend","CBA_ModulePatrol"};
requiredVersion = 0.1;
requiredAddons[] = {"A3_Modules_F"};
//author[] = {"WiredTiger"};
author = "$STR_CBA_Author";
authors[] = {"WiredTiger"};
authorUrl = "";
};
};
Expand Down
2 changes: 1 addition & 1 deletion addons/modules/fnc_getStringPos.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Author:
---------------------------------------------------------------------------- */

//SCRIPT(getStringPos);
#include "script_component.hpp"

params [
["_type",0],
Expand Down
3 changes: 1 addition & 2 deletions addons/modules/fnc_moduleAttack.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ Author:
---------------------------------------------------------------------------- */

//#include "script_component.hpp"
//SCRIPT(moduleAttack);
#include "script_component.hpp"

private ["_groups","_localGroups","_logic","_attackLocType","_attackPos","_searchRadius"];

Expand Down
2 changes: 1 addition & 1 deletion addons/modules/fnc_moduleDefend.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Author:
---------------------------------------------------------------------------- */

//SCRIPT(moduleDefend);
#include "script_component.hpp"

private [
"_logic",
Expand Down
2 changes: 1 addition & 1 deletion addons/modules/fnc_modulePatrol.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Author:
---------------------------------------------------------------------------- */

//SCRIPT(modulePatrol);
#include "script_component.hpp"

private [
"_logic",
Expand Down

0 comments on commit 5b1a6bf

Please sign in to comment.