WACCA - Fix the sorting problem of Stage Up #3

Closed
opened 2023-02-22 08:48:04 +00:00 by KamijouMarisa · 3 comments

In the actual game, the order of stages is from bottom to top, not from top to bottom.

The special stage is at the bottom.

reverse.py

        self.allowed_stages = [
            (3014, 14),
            (3013, 13),
            (3012, 12),
            (3011, 11),
            (3010, 10),
            (3009, 9),
            (3008, 8),
            (3007, 7),
            (3006, 6),
            (3005, 5),
            (3004, 4),
            (3003, 3),
            (3002, 2),
            (3001, 1),
            # Touhou
            (210001, 0),
            (210002, 0),
            (210003, 0),
            # Final spurt
            (310001, 0),
            (310002, 0),
            (310003, 0),
            # boss remix
            (310004, 0),
            (310005, 0),
            (310006, 0),
        ]

lilyr.py

        self.allowed_stages = [
            (2514, 14),
            (2513, 13),
            (2512, 12),
            (2511, 11),
            (2510, 10),
            (2509, 9),
            (2508, 8),
            (2507, 7),
            (2506, 6),
            (2505, 5),
            (2504, 4),
            (2503, 3),
            (2502, 2),
            (2501, 1),
            # Touhou
            (210001, 0),
            (210002, 0),
            (210003, 0),
        ]
In the actual game, the order of stages is from bottom to top, not from top to bottom. The special stage is at the bottom. reverse.py ``` self.allowed_stages = [ (3014, 14), (3013, 13), (3012, 12), (3011, 11), (3010, 10), (3009, 9), (3008, 8), (3007, 7), (3006, 6), (3005, 5), (3004, 4), (3003, 3), (3002, 2), (3001, 1), # Touhou (210001, 0), (210002, 0), (210003, 0), # Final spurt (310001, 0), (310002, 0), (310003, 0), # boss remix (310004, 0), (310005, 0), (310006, 0), ] ``` lilyr.py ``` self.allowed_stages = [ (2514, 14), (2513, 13), (2512, 12), (2511, 11), (2510, 10), (2509, 9), (2508, 8), (2507, 7), (2506, 6), (2505, 5), (2504, 4), (2503, 3), (2502, 2), (2501, 1), # Touhou (210001, 0), (210002, 0), (210003, 0), ] ```
Contributor

If this is issue is accurate, neither the develop branch nor the master branch have the right order still.

If this is issue is accurate, neither the develop branch nor the master branch have the right order still.
Owner

Oh oops, I hadn't played official in so long I forgot what the ordering was, let me fix this real quick.

Oh oops, I hadn't played official in so long I forgot what the ordering was, let me fix this real quick.
Owner

Alright, tested and it works, including incrementally unlocking stages 10-14, closing this.

Alright, tested and it works, including incrementally unlocking stages 10-14, closing this.
Hay1tsme added reference develop 2023-03-02 04:25:57 +00:00
Hay1tsme removed reference develop 2023-03-02 04:26:26 +00:00
Hay1tsme self-assigned this 2023-03-02 04:26:51 +00:00
Sign in to join this conversation.
No Milestone
No project
No Assignees
3 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: Hay1tsme/artemis#3
No description provided.