Skip to content

Commit

Permalink
Comment that Twister RNG is NYI
Browse files Browse the repository at this point in the history
  • Loading branch information
ChallengeSY committed Nov 22, 2024
1 parent 50565a6 commit 482f5ac
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
6 changes: 6 additions & 0 deletions VCRPlr.bi
Original file line number Diff line number Diff line change
Expand Up @@ -921,6 +921,9 @@ function quickBattle(ByRef ActiveBattle as VCRobj, SeedOverride as short = 0) as
if SeedOverride > 0 then
ActiveSeed = SeedOverride
end if
if ActiveSeed < 0 then
return -1 'Twister Battles are NYI
end if

do
playVCRcycle
Expand Down Expand Up @@ -959,6 +962,9 @@ sub watchBattle(ByRef ActiveBattle as VCRobj)
SkipSounds = 0
setupBattle(ActiveBattle)
BaseSeed = ActiveBattle.Seed
if BaseSeed <= 0 then
exit sub 'Twister Battles are NYI
end if

do
cls
Expand Down
3 changes: 3 additions & 0 deletions games/List.csv
Original file line number Diff line number Diff line change
Expand Up @@ -7931,6 +7931,7 @@
607801,"Wrigley Sector 0159","Standard Beginners",46
607914,"Anditius Sector 0159","League Blitz",21
607920,"Australis Sector 0159","Campaign",46
607930,"Planet X Sector 0159","Classic",117
607968,"Colony 10 Sector 0159","Standard",59
608086,"Zol Sector 0159","Standard Beginners",27
608146,"Sanstrisious Sector 0159","Classic",69
Expand Down Expand Up @@ -8103,5 +8104,7 @@
626337,"Disney World Sector 0166","Standard Beginners",38
626616,"Kattia Sector 0166","Standard Intermediate",70
626677,"Hallone Sector 0166","Standard Beginners",37
627134,"Lola 23a Sector 0166","Standard Intermediate",38
627287,"Barnard's Sector 0166","Standard Beginners",37
627824,"New Chicago Sector 0166","Standard Intermediate",32
628047,"Blondonia Sector 0166","Standard Beginners",26
1 change: 1 addition & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ Nu Replayer comes with its own Visual Combat Recording (or simply VCR) player. I
### Controls
* Change replay speed: 1-9
* Enter step mode: Spacebar (any other key exits step mode
* Instantly finish the current replay: F

## Networking
Nu Replayer features complete network support, allowing downloading of lists and turns *without* relying on any other tools (not even a web browser).
Expand Down

0 comments on commit 482f5ac

Please sign in to comment.