From 693ab6cc603283ca6a1acb809734a3f3b5e2deac Mon Sep 17 00:00:00 2001 From: nanaya Date: Thu, 21 Dec 2023 18:30:48 +0900 Subject: [PATCH] Update mods test RX and PF combination is now allowed. --- tests/Libraries/ModsTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Libraries/ModsTest.php b/tests/Libraries/ModsTest.php index 9e2fcb9e885..ddf54798ad5 100644 --- a/tests/Libraries/ModsTest.php +++ b/tests/Libraries/ModsTest.php @@ -152,12 +152,12 @@ public static function modComboExclusives() [Ruleset::mania, ['DT'], ['PF'], true], // conflicting exclusive required mods - [Ruleset::osu, ['RX', 'PF'], [], false], + [Ruleset::osu, ['HT', 'DT'], [], false], [Ruleset::mania, ['FI', 'HD'], [], false], // allowed mods conflicts with exclusive required mods - [Ruleset::osu, ['RX'], ['PF'], false], - [Ruleset::taiko, ['RX'], ['PF'], false], + [Ruleset::osu, ['HT'], ['DT'], false], + [Ruleset::taiko, ['HT'], ['DT'], false], ]; } }