diff --git a/Sources/epoch_server_debris_event/config.cpp b/Sources/epoch_server_debris_event/config.cpp index 2ee61ce3..91a0eaed 100644 --- a/Sources/epoch_server_debris_event/config.cpp +++ b/Sources/epoch_server_debris_event/config.cpp @@ -33,6 +33,6 @@ class CfgEpochServerEvents usePrefix = 0; // usePrefix: 1 = pre/postfix path (use if file is inside epoch settings pbo EpochEvents folder), 2 = pre/postfix path (use if file inside epoch events pbo EpochEvents folder), 0 = use full file path runNumTimes = 1; // runNumTimes: -1 = no limit, 0 = disabled, 1+ = number of times to execute before removing event. input[] = {}; // array input to execVM at time of run and accessed with _this inside of script. - disallowedWorlds = {"VR"}; + disallowedWorlds[] = {"VR"}; }; }; diff --git a/Sources/epoch_server_vip_event/config.cpp b/Sources/epoch_server_vip_event/config.cpp index d3a3aaf7..d694edce 100644 --- a/Sources/epoch_server_vip_event/config.cpp +++ b/Sources/epoch_server_vip_event/config.cpp @@ -33,6 +33,6 @@ class CfgEpochServerEvents usePrefix = 0; // usePrefix: 0 = use full file path, 1 = pre/postfix path (use if file is inside epoch settings pbo EpochEvents folder), 2 = pre/postfix path (use if file inside epoch events pbo EpochEvents folder). runNumTimes = -1; // runNumTimes: 0 = disabled, 1+ = number of times to execute before removing event, -1 = no limit. input[] = {"ItemBriefcaseGold100oz"}; // array input to execVM at time of run and accessed with _this inside of script. - disallowedWorlds = {"VR"}; + disallowedWorlds[] = {"VR"}; }; };