We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c80fe77 commit c4ae0cfCopy full SHA for c4ae0cf
config/formats.ts
@@ -686,7 +686,10 @@ export const Formats: FormatList = [
686
move.flags['futuremove'] = 1;
687
delete move.flags['protect'];
688
move.onTry = function (source, t) {
689
- if (!t.side.addSlotCondition(t, 'futuremove')) return false;
+ if (!t.side.addSlotCondition(t, 'futuremove')) {
690
+ this.hint('Future moves fail when the targeted slot already has a future move focused on it.');
691
+ return false;
692
+ }
693
const moveData = this.dex.getActiveMove(move.id);
694
moveData.flags['futuremove'] = 1;
695
delete moveData.flags['protect'];
0 commit comments