From d22d8bb36840fdde605722a0266255d74d6b8dd5 Mon Sep 17 00:00:00 2001 From: Amory Meltzer Date: Fri, 24 Jan 2020 20:39:11 -0500 Subject: [PATCH] arv: Reorder so that VAO and promo-only are together, spambot is last Mentioned at https://github.com/azatoth/twinkle/pull/774#issue-347336213 --- modules/twinklearv.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/modules/twinklearv.js b/modules/twinklearv.js index b7717c61b..72a0ab82e 100644 --- a/modules/twinklearv.js +++ b/modules/twinklearv.js @@ -159,14 +159,14 @@ Twinkle.arv.callback.changeCategory = function (e) { value: 'vandalonly', disabled: mw.util.isIPAddress(root.uid.value) }, - { - label: 'Account is evidently a spambot or a compromised account', - value: 'spambot' - }, { label: 'Account is a promotion-only account', value: 'promoonly', disabled: mw.util.isIPAddress(root.uid.value) + }, + { + label: 'Account is evidently a spambot or a compromised account', + value: 'spambot' } ] }); @@ -521,12 +521,12 @@ Twinkle.arv.callback.evaluate = function(e) { return 'vandalism after final warning'; case 'postblock': return 'vandalism after recent release of block'; - case 'spambot': - return 'account is evidently a spambot or a compromised account'; case 'vandalonly': return 'actions evidently indicate a vandalism-only account'; case 'promoonly': return 'account is being used only for promotional purposes'; + case 'spambot': + return 'account is evidently a spambot or a compromised account'; default: return 'unknown reason'; }