Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions .hemtt/project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,14 @@ exclude = [
]

[version]
path = "addons/main/script_version.hpp" # Default

major = 0
minor = 0
patch = 0
build = 0

git_hash = 8 # Default: 8

[hemtt.config]
preset = "Hemtt"

[hemtt.launch.default]
workshop = [
"450814997", # CBA_A3's Workshop ID
"463939057", # ACE3
"843577117", # RHS USAF
"450814997" # CBA_A3's Workshop ID
]
parameters = [
"-skipIntro", # These parameters are passed to the Arma 3 executable
Expand Down
4 changes: 2 additions & 2 deletions addons/dynobj/functions/fnc_cmGridString.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ _y = _yArr joinString "";

LOG_2("X/Y str: %1 / %2",_x,_y);

_output = format ["%1%2",_x,_y];
LOG_1("output: %1",_output);
private _output = format ["%1%2",_x,_y];
LOG_1("%1",_output);

_output
Loading