1
0
mirror of synced 2025-02-20 20:50:59 +01:00

Fix a few tiny nits in kriddles.

This commit is contained in:
Jennifer Taylor 2022-09-19 03:03:32 +00:00
parent 29cf43dc5c
commit 8ab1800ff4
2 changed files with 6 additions and 6 deletions

View File

@ -226,7 +226,7 @@ This should be given the same config file as "api", "frontend" and "services".
Development version of an eAmusement protocol server using flask and the protocol
libraries also used in "bemanishark" and "trafficgen". Currently it lets most modern
BEMANI games boot and supports full profile and events for Beatmania IIDX 20-26,
Pop'n Music 19-25, Jubeat Saucer, Saucer Fulfill, Prop, Qubell and Clan, Sound Voltex
Pop'n Music 19-26, Jubeat Saucer, Saucer Fulfill, Prop, Qubell and Clan, Sound Voltex
1, 2, 3 Season 1/2 and 4, Dance Dance Revolution X2, X3, 2013, 2014 and Ace, MÚSECA 1,
MÚSECA 1+1/2, MÚSECA Plus, Reflec Beat, Limelight, Colette, groovin'!! Upper, Volzza
1 and Volzza 2, Metal Gear Arcade, and finally The\*BishiBashi.
@ -258,7 +258,7 @@ this will run through and attempt to verify simple operation of that service. No
guarantees are made on the accuracy of the emulation though I've strived to be
correct. In some cases, I will verify the response, and in other cases I will
simply verify that certain things exist so as not to crash a real client. This
currently generates traffic emulating Beatmania IIDX 20-26, Pop'n Music 19-25, Jubeat
currently generates traffic emulating Beatmania IIDX 20-26, Pop'n Music 19-26, Jubeat
Saucer, Fulfill, Prop, Qubell and Clan, Sound Voltex 1, 2, 3 Season 1/2 and 4, Dance
Dance Revolution X2, X3, 2013, 2014 and Ace, The\*BishiBashi, MÚSECA 1 and MÚSECA 1+1/2,
Reflec Beat, Reflec Beat Limelight, Reflec Beat Colette, groovin'!! Upper, Volzza 1 and
@ -405,7 +405,7 @@ do that.
### Pop'n Music
For Pop'n Music, get the game DLL from the version of the game you want to import and
run a command like so. This network supports versions 19-25 so you will want to run this
run a command like so. This network supports versions 19-26 so you will want to run this
command once for every version, giving the correct DLL file:
```

View File

@ -382,7 +382,7 @@ class PopnMusicKaimei(PopnMusicModernBase):
)
def format_profile(self, userid: UserID, profile: Profile) -> Node:
root = PopnMusicModernBase.format_profile(self, userid, profile)
root = super().format_profile(userid, profile)
account = root.child('account')
account.add_child(Node.s16('card_again_count', profile.get_int('point')))
@ -402,7 +402,7 @@ class PopnMusicKaimei(PopnMusicModernBase):
# Generate Short Riddles for MN tanteisha
randomRiddles: List[int] = []
for x in range(3):
for _ in range(3):
riddle = 0
while True:
riddle = math.floor(random.randrange(1, 21, 1))
@ -438,7 +438,7 @@ class PopnMusicKaimei(PopnMusicModernBase):
return root
def unformat_profile(self, userid: UserID, request: Node, oldprofile: Profile) -> Profile:
newprofile = PopnMusicModernBase.unformat_profile(self, userid, request, oldprofile)
newprofile = super().unformat_profile(userid, request, oldprofile)
account = request.child('account')
if account is not None: