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

Time Manipu-Rat-or works in 4x3x4 not 5x3x5 #890

Open
AdamMEI opened this issue Aug 26, 2024 · 0 comments
Open

Time Manipu-Rat-or works in 4x3x4 not 5x3x5 #890

AdamMEI opened this issue Aug 26, 2024 · 0 comments

Comments

@AdamMEI
Copy link

AdamMEI commented Aug 26, 2024

Edit: Title should say 4x2x4 not 4x3x4

A rat with the Time Manipu-Rat-or should affect blocks in a 5x3x5 area (according to the description), but it only works in a 4x2x4 range. Here is the relevant source code from the TimeManipuRatorUpgradeItem.java file:

for (int x = -2; x < 2; x++) {
    for (int z = -2; z < 2; z++) {
        for (int y = -1; y < 1; y++) {
            ...
        }
    }
}

I think it should be <= 2 or < 3 instead of < 2 for x and z, and <= 1 or < 2 instead of < 1 for y.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant