From 2a6294c2ea0e2dabc244b853da0e289d4002d63a Mon Sep 17 00:00:00 2001 From: JustArchi Date: Wed, 13 Jun 2018 00:50:26 +0200 Subject: [PATCH] Schema update --- WebConfigGenerator/src/schema.js | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/WebConfigGenerator/src/schema.js b/WebConfigGenerator/src/schema.js index b2fcb747b..a0a22606b 100644 --- a/WebConfigGenerator/src/schema.js +++ b/WebConfigGenerator/src/schema.js @@ -1,7 +1,7 @@ import Validators from './validators'; export default { - 'V3.2.0.0+': { + 'V3.2.0.1+': { asf: [ { legend: 'schema.basic', @@ -441,10 +441,20 @@ export default { defaultValue: false }, { - type: 'InputCheckbox', - label: 'FarmOffline', - field: 'FarmOffline', - defaultValue: false + type: 'InputSelect', + label: 'OnlineStatus', + field: 'OnlineStatus', + options: [ + { value: 0, name: 'Offline' }, + { value: 1, name: 'Online' }, + { value: 2, name: 'Busy' }, + { value: 3, name: 'Away' }, + { value: 4, name: 'Snooze' }, + { value: 5, name: 'LookingToTrade' }, + { value: 6, name: 'LookingToPlay' }, + { value: 7, name: 'Invisible' } + ], + defaultValue: 1 }, { type: 'InputCheckbox',