Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chaos scroll fix #261

Merged
merged 2 commits into from
Sep 13, 2024
Merged

chaos scroll fix #261

merged 2 commits into from
Sep 13, 2024

Commits on Aug 7, 2024

  1. chaos scroll fix

    The intention of the rand method is to return a pseudorandom uniformly distributed int between lbound and ubound (both inclusive). The previous implementation did not work as intended when the lower bound was negative since java round up instead of down when casting a negative double to an int. Adding the lower bound after the cast rather than before fixes this.
    
    Also changed the CHSCROLL_STAT_RANGE from 6 to 5 to be consistent with gms.
    pimittens committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    ec90df9 View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2024

  1. Create RandomizerTest.java

    pimittens committed Sep 10, 2024
    Configuration menu
    Copy the full SHA
    215dc42 View commit details
    Browse the repository at this point in the history