From 1d7c356947303920308cf01590bba7e9ceb4604d Mon Sep 17 00:00:00 2001 From: The Immortal Date: Sun, 13 Dec 2015 03:28:17 +0400 Subject: [PATCH] STABmons: Ban Belly Drum and Shell Smash --- team-validator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/team-validator.js b/team-validator.js index dca25e8fe5..95f546199d 100644 --- a/team-validator.js +++ b/team-validator.js @@ -637,7 +637,7 @@ Validator = (function () { do { alreadyChecked[template.speciesid] = true; // STABmons hack to avoid copying all of validateSet to formats - if (format.banlistTable && format.banlistTable['ignorestabmoves'] && move !== 'chatter') { + if (format.banlistTable && format.banlistTable['ignorestabmoves'] && !(move in {'bellydrum':1, 'chatter':1, 'shellsmash':1})) { let types = template.types; if (template.species === 'Shaymin') types = ['Grass', 'Flying']; if (template.baseSpecies === 'Hoopa') types = ['Psychic', 'Ghost', 'Dark'];