Skip to content

Commit

Permalink
fIx create anomaly function
Browse files Browse the repository at this point in the history
  • Loading branch information
diwako committed Oct 29, 2024
1 parent 9ad6038 commit f1644f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .hemtt/project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ git_hash = 0

[files]
include = ["meta.cpp", "mod.cpp", "authors.txt", "license.txt"]
exclude = ["*.psd", "*.png", "*.tga"]
exclude = ["*.psd", "*.png", "*.tga", "/**/cfg*.hpp"]

[hemtt.launch.default]
workshop = [
Expand Down
2 changes: 1 addition & 1 deletion addons/main/functions/anomalies/fn_createTeleport.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if !(isServer) exitWith {};
private _varName = "";
if !(_pos isEqualType []) then {
//created via module
_id = _pos getVariable [QGVAR(anomalyId), -1];
_id = _pos getVariable ["anomalyId", -1];

_varName = vehicleVarName _pos;
};
Expand Down

0 comments on commit f1644f3

Please sign in to comment.