Skip to content

Commit

Permalink
switch default mode
Browse files Browse the repository at this point in the history
  • Loading branch information
nomisum committed Oct 9, 2019
1 parent 9f46312 commit 10c20f1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
4 changes: 2 additions & 2 deletions BC_buyables/params.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ class BUYABLES_BLUFOR
title = "Blufor";
values[] = {0, 1, 2};
texts[] = {"bwGM", "USA", "BWTanks"};
default = 2;
default = 1;
};

class BUYABLES_OPFOR
{
title = "Opfor";
values[] = {0, 1, 2};
texts[] = {"nvaGM", "Russia", "RussiaTanks"};
default = 2;
default = 1;
};
4 changes: 1 addition & 3 deletions initserver.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,14 @@

call compile preprocessfile "node_modules\shk_pos\functions\shk_pos_init.sqf"; // absolute basic!

[] call BC_setup_fnc_initialSpawnServer;


DEBUG_MODE = false;
if ((["DEBUG_MODE", 0] call BIS_fnc_getParamValue) == 1 || !isMultiplayer) then {
DEBUG_MODE = true;
};
publicVariable "DEBUG_MODE";


[] call BC_setup_fnc_initialSpawnServer;

addMissionEventHandler ["HandleDisconnect",{
params ["_unit", "_id", "_uid", "_name"];
Expand Down
6 changes: 3 additions & 3 deletions mission.sqm
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ class EditorData
class Camera
{
pos[]={1515.5316,138.04147,5505.4727};
dir[]={0.7568146,-0.56710517,0.3253994};
up[]={0.52104467,0.82358593,0.22403164};
aside[]={0.39503929,-1.7117709e-006,-0.91880232};
dir[]={0.7077024,-0.43420145,0.55757266};
up[]={0.34113589,0.90075445,0.26877257};
aside[]={0.61893594,-2.5377667e-006,-0.78560168};
};
};
binarizationWanted=0;
Expand Down

0 comments on commit 10c20f1

Please sign in to comment.