Skip to content

Commit

Permalink
plm module initialization tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Wyqer committed Oct 18, 2018
1 parent d78a0e8 commit 8f1b804
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*
KPLIB_fnc_plm_initModule
KPLIB_fnc_plm_postInitModule
File: fn_plm_initModule.sqf
File: fn_plm_postInitModule.sqf
Author: KP Liberation Dev Team - https://github.com/KillahPotatoes
Date: 2017-08-31
Last Update: 2018-08-31
Last Update: 2018-10-18
License: GNU General Public License v3.0 - https://www.gnu.org/licenses/gpl-3.0.html
Description:
Expand All @@ -25,7 +25,7 @@
if (isServer) then {diag_log format ["[KP LIBERATION] [%1] [PLM] Module initializing...", diag_tickTime];};

// Read the module globals
call compile preprocessFileLineNumbers "modules\99_plm\globals.sqf";
[] call compile preprocessFileLineNumbers "modules\99_plm\globals.sqf";

// Load settings, if available
private _settings = profileNamespace getVariable ["KP_PLM_Settings", []];
Expand Down
12 changes: 6 additions & 6 deletions Missionframework/modules/99_plm/functions.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
File: functions.hpp
Author: KP Liberation Dev Team - https://github.com/KillahPotatoes
Date: 2018-06-02
Last Update: 2018-08-31
Last Update: 2018-10-18
License: GNU General Public License v3.0 - https://www.gnu.org/licenses/gpl-3.0.html
Description:
Expand All @@ -23,17 +23,17 @@ class plm {
// Apply view distance and sound volume
class plm_getInOut {};

// Module initialization
class plm_initModule {
postInit = 1;
};

// Joins selected group
class plm_join {};

// Open the dialog
class plm_openDialog {};

// Module initialization
class plm_postInitModule {
postInit = 1;
};

// Applies new name to group
class plm_rename {};

Expand Down

0 comments on commit 8f1b804

Please sign in to comment.