From 95a9e6254adbf83fcea5287d81da09fae84b80fe Mon Sep 17 00:00:00 2001 From: Thatoo Date: Mon, 1 Jul 2019 12:49:13 +0200 Subject: [PATCH] avoid boolean for public but ask a clear choice Yes/No --- manifest.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/manifest.json b/manifest.json index a72d8b4..3b93fe5 100644 --- a/manifest.json +++ b/manifest.json @@ -42,12 +42,12 @@ }, { "name": "is_public", - "type": "boolean", - "ask": { - "en": "Is it a public server ?", - "fr": "Est-ce un serveur public ?" - }, - "default": 0 + "ask": { + "en": "Is it a public server?", + "fr": "Est-ce un serveur public?" + }, + "choices": ["Yes", "No"], + "default": "Yes" } ] }