switched module function to be a post init function

This commit is contained in:
Valmo Trindade
2024-12-19 23:51:08 -03:00
parent a16f165c16
commit c702397c8d
5 changed files with 6 additions and 5 deletions

View File

@@ -7,7 +7,7 @@ prefix = "armatak"
build = 0 build = 0
major = 0 major = 0
minor = 7 minor = 7
patch = 0 patch = 5
git_hash = 0 git_hash = 0

2
Cargo.lock generated
View File

@@ -83,7 +83,7 @@ dependencies = [
[[package]] [[package]]
name = "armatak" name = "armatak"
version = "0.7.0" version = "0.7.5"
dependencies = [ dependencies = [
"arma-rs", "arma-rs",
"futures", "futures",

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "armatak" name = "armatak"
version = "0.7.0" version = "0.7.5"
edition = "2021" edition = "2021"
[dependencies] [dependencies]

View File

@@ -3,6 +3,7 @@ class CfgFunctions {
class functions { class functions {
class init { class init {
file = "\armatak\armatak\armatak_main\functions\fn_init.sqf"; file = "\armatak\armatak\armatak_main\functions\fn_init.sqf";
postInit = 1;
}; };
class extract_callsign { class extract_callsign {
file = "\armatak\armatak\armatak_main\functions\extract_data\fn_extract_callsign.sqf"; file = "\armatak\armatak\armatak_main\functions\extract_data\fn_extract_callsign.sqf";

View File

@@ -1,4 +1,4 @@
#define build 0 #define build 0
#define major 0 #define major 0
#define minor 6 #define minor 7
#define patch 0 #define patch 5