From 78a7829a622355152348a0f018daf26eb6f03289 Mon Sep 17 00:00:00 2001 From: vbawol Date: Sun, 17 Sep 2017 12:18:19 -0500 Subject: [PATCH] fix typo :8ball: --- Sources/epoch_server_debris_event/config.cpp | 2 +- Sources/epoch_server_vip_event/config.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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"}; }; };