diff --git a/addons/spike/CfgMagazines.hpp b/addons/spike/CfgMagazines.hpp index fd8b0c8576..01ee40d776 100644 --- a/addons/spike/CfgMagazines.hpp +++ b/addons/spike/CfgMagazines.hpp @@ -1,7 +1,7 @@ class CfgMagazines { class Titan_AT; class GVAR(lr): Titan_AT { - author = "Brandon (TCVM)"; + author = "Dani (TCVM)"; ammo = QGVAR(lr); displayName = CSTRING(LR); diff --git a/addons/spike/README.md b/addons/spike/README.md index 31998b81f0..72c61d44ce 100644 --- a/addons/spike/README.md +++ b/addons/spike/README.md @@ -8,5 +8,5 @@ Adds SPIKE LR guided missile The people responsible for merging changes to this component or answering potential questions. -- [Brandon-TCVM](https://github.com/TheCandianVendingMachine) +- [Dani-TCVM](https://github.com/TheCandianVendingMachine) diff --git a/addons/spike/config.cpp b/addons/spike/config.cpp index 95cdd85ba1..9c3ae0a724 100644 --- a/addons/spike/config.cpp +++ b/addons/spike/config.cpp @@ -8,7 +8,7 @@ class CfgPatches { requiredVersion = REQUIRED_VERSION; requiredAddons[] = {"ace_common"}; author = ECSTRING(common,ACETeam); - authors[] = {"Brandon (TCVM)"}; + authors[] = {"Dani (TCVM)"}; url = ECSTRING(main,URL); VERSION_CONFIG; }; diff --git a/addons/spike/functions/fnc_camera_changeZoom.sqf b/addons/spike/functions/fnc_camera_changeZoom.sqf index 6dde6366f7..5ab5473e48 100644 --- a/addons/spike/functions/fnc_camera_changeZoom.sqf +++ b/addons/spike/functions/fnc_camera_changeZoom.sqf @@ -1,6 +1,6 @@ #include "script_component.hpp" /* - * Author: Brandon (TCVM) + * Author: Dani (TCVM) * Decreases zoom of current camera * * Arguments: diff --git a/addons/spike/functions/fnc_camera_cycleViewMode.sqf b/addons/spike/functions/fnc_camera_cycleViewMode.sqf index 09f397b8b4..55773b229f 100644 --- a/addons/spike/functions/fnc_camera_cycleViewMode.sqf +++ b/addons/spike/functions/fnc_camera_cycleViewMode.sqf @@ -1,6 +1,6 @@ #include "script_component.hpp" /* - * Author: Brandon (TCVM) + * Author: Dani (TCVM) * Cycles camera thermal mode (if avaliable) * * Arguments: diff --git a/addons/spike/functions/fnc_camera_destroy.sqf b/addons/spike/functions/fnc_camera_destroy.sqf index bd89752e8b..6942696e0d 100644 --- a/addons/spike/functions/fnc_camera_destroy.sqf +++ b/addons/spike/functions/fnc_camera_destroy.sqf @@ -1,6 +1,6 @@ #include "script_component.hpp" /* - * Author: Brandon (TCVM) + * Author: Dani (TCVM) * Destroys camera attaches to projectile * * Arguments: diff --git a/addons/spike/functions/fnc_camera_handleKeyPress.sqf b/addons/spike/functions/fnc_camera_handleKeyPress.sqf index fa577da651..0dba0153b9 100644 --- a/addons/spike/functions/fnc_camera_handleKeyPress.sqf +++ b/addons/spike/functions/fnc_camera_handleKeyPress.sqf @@ -1,6 +1,6 @@ #include "script_component.hpp" /* - * Author: Brandon (TCVM) + * Author: Dani (TCVM) * Updates camera with inputs * * Arguments: diff --git a/addons/spike/functions/fnc_camera_init.sqf b/addons/spike/functions/fnc_camera_init.sqf index 0d767c2937..44e1fa0d4b 100644 --- a/addons/spike/functions/fnc_camera_init.sqf +++ b/addons/spike/functions/fnc_camera_init.sqf @@ -1,6 +1,6 @@ #include "script_component.hpp" /* - * Author: Brandon (TCVM) + * Author: Dani (TCVM) * Initializes camera for player to view missile from its nose * * Arguments: diff --git a/addons/spike/functions/fnc_camera_setViewMode.sqf b/addons/spike/functions/fnc_camera_setViewMode.sqf index 402b557391..95793eec30 100644 --- a/addons/spike/functions/fnc_camera_setViewMode.sqf +++ b/addons/spike/functions/fnc_camera_setViewMode.sqf @@ -1,6 +1,6 @@ #include "script_component.hpp" /* - * Author: Brandon (TCVM) + * Author: Dani (TCVM) * Cycles camera thermal mode (if avaliable) * * Arguments: diff --git a/addons/spike/functions/fnc_camera_setZoom.sqf b/addons/spike/functions/fnc_camera_setZoom.sqf index bbf3573f1d..abe8753e84 100644 --- a/addons/spike/functions/fnc_camera_setZoom.sqf +++ b/addons/spike/functions/fnc_camera_setZoom.sqf @@ -1,6 +1,6 @@ #include "script_component.hpp" /* - * Author: Brandon (TCVM) + * Author: Dani (TCVM) * Decreases zoom of current camera * * Arguments: diff --git a/addons/spike/functions/fnc_camera_switchAway.sqf b/addons/spike/functions/fnc_camera_switchAway.sqf index 021accdfa6..8d8b82236c 100644 --- a/addons/spike/functions/fnc_camera_switchAway.sqf +++ b/addons/spike/functions/fnc_camera_switchAway.sqf @@ -1,6 +1,6 @@ #include "script_component.hpp" /* - * Author: Brandon (TCVM) + * Author: Dani (TCVM) * Switches away from the currently controlled camera * * Arguments: diff --git a/addons/spike/functions/fnc_camera_switchTo.sqf b/addons/spike/functions/fnc_camera_switchTo.sqf index 56db535c0c..f196a0912d 100644 --- a/addons/spike/functions/fnc_camera_switchTo.sqf +++ b/addons/spike/functions/fnc_camera_switchTo.sqf @@ -1,6 +1,6 @@ #include "script_component.hpp" /* - * Author: Brandon (TCVM) + * Author: Dani (TCVM) * Switches to the currently controlled camera * * Arguments: diff --git a/addons/spike/functions/fnc_camera_update.sqf b/addons/spike/functions/fnc_camera_update.sqf index 0296c1061e..e7dd1837a9 100644 --- a/addons/spike/functions/fnc_camera_update.sqf +++ b/addons/spike/functions/fnc_camera_update.sqf @@ -1,6 +1,6 @@ #include "script_component.hpp" /* - * Author: Brandon (TCVM) + * Author: Dani (TCVM) * Updates camera to be on a fixed point * * Arguments: diff --git a/addons/spike/functions/fnc_camera_updateTargetingGate.sqf b/addons/spike/functions/fnc_camera_updateTargetingGate.sqf index df9a16d290..85a8582f19 100644 --- a/addons/spike/functions/fnc_camera_updateTargetingGate.sqf +++ b/addons/spike/functions/fnc_camera_updateTargetingGate.sqf @@ -1,6 +1,6 @@ #include "script_component.hpp" /* - * Author: Brandon (TCVM) + * Author: Dani (TCVM) * Switches away from the currently controlled camera * * Arguments: diff --git a/addons/spike/functions/fnc_camera_userInCamera.sqf b/addons/spike/functions/fnc_camera_userInCamera.sqf index e4127c5cef..d7f9d2fcd1 100644 --- a/addons/spike/functions/fnc_camera_userInCamera.sqf +++ b/addons/spike/functions/fnc_camera_userInCamera.sqf @@ -1,6 +1,6 @@ #include "script_component.hpp" /* - * Author: Brandon (TCVM) + * Author: Dani (TCVM) * Switches away from the currently controlled camera * * Arguments: diff --git a/addons/spike/functions/fnc_getTargetPosition.sqf b/addons/spike/functions/fnc_getTargetPosition.sqf index 2ba002a439..53e31d3c96 100644 --- a/addons/spike/functions/fnc_getTargetPosition.sqf +++ b/addons/spike/functions/fnc_getTargetPosition.sqf @@ -1,6 +1,6 @@ #include "script_component.hpp" /* - * Author: Brandon (TCVM) + * Author: Dani (TCVM) * Return the position of a potential EO target via a "edge detection" algorithm. Compares object bounding boxes to see what we are most likely hitting * * Arguments: diff --git a/addons/spike/functions/fnc_keyDown.sqf b/addons/spike/functions/fnc_keyDown.sqf index 0ca8235858..2e2d8c94af 100644 --- a/addons/spike/functions/fnc_keyDown.sqf +++ b/addons/spike/functions/fnc_keyDown.sqf @@ -1,6 +1,6 @@ #include "script_component.hpp" /* - * Author: Brandon (TCVM) + * Author: Dani (TCVM) * Handle key presses * * Arguments: diff --git a/addons/spike/functions/fnc_mapHelperDraw.sqf b/addons/spike/functions/fnc_mapHelperDraw.sqf index 6cd9cd4cbd..987dde1eb2 100644 --- a/addons/spike/functions/fnc_mapHelperDraw.sqf +++ b/addons/spike/functions/fnc_mapHelperDraw.sqf @@ -1,6 +1,6 @@ #include "script_component.hpp" /* - * Author: Brandon (TCVM) + * Author: Dani (TCVM) * Handles the map helper's draw event * Resets arguments if not run recently * And starts a watchdog to detect when weapon display unloaded diff --git a/addons/spike/functions/fnc_midCourseTransition.sqf b/addons/spike/functions/fnc_midCourseTransition.sqf index cf72b0dc74..95ded0a71b 100644 --- a/addons/spike/functions/fnc_midCourseTransition.sqf +++ b/addons/spike/functions/fnc_midCourseTransition.sqf @@ -1,6 +1,6 @@ #include "script_component.hpp" /* - * Author: Brandon (TCVM) + * Author: Dani (TCVM) * Condition to switch to next navigation profile * * Arguments: diff --git a/addons/spike/functions/fnc_navigation.sqf b/addons/spike/functions/fnc_navigation.sqf index 9af9c0d45e..32a12b247a 100644 --- a/addons/spike/functions/fnc_navigation.sqf +++ b/addons/spike/functions/fnc_navigation.sqf @@ -1,6 +1,6 @@ #include "script_component.hpp" /* - * Author: Brandon (TCVM) + * Author: Dani (TCVM) * Sets up a top-attack profile. If we don't have a target: coast * * Arguments: diff --git a/addons/spike/functions/fnc_onFired.sqf b/addons/spike/functions/fnc_onFired.sqf index a5282b70d8..d2c3cd17b8 100644 --- a/addons/spike/functions/fnc_onFired.sqf +++ b/addons/spike/functions/fnc_onFired.sqf @@ -1,6 +1,6 @@ #include "script_component.hpp" /* - * Author: Brandon (TCVM) + * Author: Dani (TCVM) * Initialises SPIKE camera * * Arguments: diff --git a/addons/spike/functions/fnc_seeker.sqf b/addons/spike/functions/fnc_seeker.sqf index 29c9683e52..9798a46ade 100644 --- a/addons/spike/functions/fnc_seeker.sqf +++ b/addons/spike/functions/fnc_seeker.sqf @@ -1,6 +1,6 @@ #include "script_component.hpp" /* - * Author: Brandon (TCVM) + * Author: Dani (TCVM) * Seeker Type: Spike Optical * * Arguments: