Hotfix for epoch vehicle issue
This commit is contained in:
Teh Dango 2018-01-19 21:43:49 -05:00
parent 549f3d7063
commit d66cfea13d
3 changed files with 6 additions and 6 deletions

BIN
Sarge.pbo

Binary file not shown.

View File

@ -13,7 +13,7 @@
*/
private ["_SAR_supportedMaps","_config","_modConfigs","_modPatches","_modName","_worldname","_startx","_starty","_gridsize_x","_gridsize_y","_gridwidth","_markername","_triggername","_trig_act_stmnt","_trig_deact_stmnt","_trig_cond","_legendname"];
_SAR_version = "2.4.2";
_SAR_version = "2.4.3";
diag_log format ["Sarge's AI System: Welcome to Sarge AI!"];
diag_log format ["Sarge's AI System: Now initializing Sarge AI version %1 for %2",_SAR_version,worldName];

View File

@ -47,20 +47,20 @@ switch (_modName) do {
SAR_AI_unfriendly_side = EAST;
EAST setFriend [CIVILIAN, 0];
INDEPENDENT setFriend [CIVILIAN, 1];
};
case "exile": {
SAR_AI_friendly_side = INDEPENDENT;
AR_AI_unfriendly_side = WEST;
WEST setFriend [INDEPENDENT, 0];
};
case "epoch": {
SAR_AI_friendly_side = INDEPENDENT;
SAR_AI_unfriendly_side = WEST;
SAR_AI_friendly_side = WEST;
SAR_AI_unfriendly_side = RESISTANCE;
WEST setFriend [CIVILIAN, 0];
INDEPENDENT setFriend [CIVILIAN, 1];
RESISTANCE setFriend [WEST, 0];
};
default {
diag_log "Sarge AI System: ERROR! The mod you are loading Sarge AI for is not supported!";