Skip to content

Commit

Permalink
Update initPlayerLocal.sqf
Browse files Browse the repository at this point in the history
changed item to source,
source is using always the same string,
item is using a number of a given source by obs, different by each user
  • Loading branch information
SirBassi authored Aug 18, 2021
1 parent 68c12b7 commit 97d5819
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions initPlayerLocal.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ then
headers = [];
postData = "";
if (_mapIsOpened) then {
postData = '{ "item": 9, "render": true}';
postData = '{ "source": "Quellenspiegel", "render": true}';
} else {
postData = '{ "item": 9, "render": false}';
postData = '{ "source": "Quellenspiegel", "render": false}';
};
private _response = [
url,
Expand Down

0 comments on commit 97d5819

Please sign in to comment.