Open
Conversation
NgLoader
reviewed
Feb 6, 2026
orebfuscator-plugin/src/main/java/net/imprex/orebfuscator/OrebfuscatorCommand.java
Outdated
Show resolved
Hide resolved
chore: use new minecrat 26+ file structure for cache
NgLoader
previously approved these changes
Feb 6, 2026
orebfuscator-core/src/main/java/dev/imprex/orebfuscator/config/OrebfuscatorCacheConfig.java
Show resolved
Hide resolved
| @Override | ||
| public FileVisitResult postVisitDirectory(Path dir, @Nullable IOException exc) throws IOException { | ||
| try { | ||
| Files.delete(dir); |
Member
There was a problem hiding this comment.
Verify that we are actually deleting the correct folder and not the root cache folder.
Ingrim4
commented
Feb 7, 2026
| return; | ||
| } | ||
|
|
||
| // TODO: validate each height has some valid values or limit height or use some default fill in value |
Ingrim4
commented
Feb 7, 2026
orebfuscator-core/src/main/java/dev/imprex/orebfuscator/proximity/ProximitySystem.java
Outdated
Show resolved
Hide resolved
Ingrim4
commented
Feb 7, 2026
| BlockPos blockPos = proximityBlock.blockPos(); | ||
|
|
||
| // skip lava obfuscated if not in lava | ||
| // TODO: the current deobfuscation would only deobfuscate lava if the neighboring block is a hiddenBlock |
Ingrim4
commented
Feb 7, 2026
...ore/src/main/java/dev/imprex/orebfuscator/reflect/predicate/AbstractExecutablePredicate.java
Outdated
Show resolved
Hide resolved
Ingrim4
commented
Feb 7, 2026
orebfuscator-core/src/main/java/dev/imprex/orebfuscator/statistics/StatisticsSource.java
Outdated
Show resolved
Hide resolved
Ingrim4
commented
Feb 7, 2026
orebfuscator-core/src/main/java/dev/imprex/orebfuscator/util/ChunkDirection.java
Outdated
Show resolved
Hide resolved
Ingrim4
commented
Feb 7, 2026
orebfuscator-core/src/main/java/dev/imprex/orebfuscator/util/NamespacedKey.java
Outdated
Show resolved
Hide resolved
Ingrim4
commented
Feb 7, 2026
orebfuscator-core/src/main/java/dev/imprex/orebfuscator/util/NamespacedKey.java
Outdated
Show resolved
Hide resolved
Ingrim4
commented
Feb 7, 2026
orebfuscator-core/src/main/java/dev/imprex/orebfuscator/util/RollingTimer.java
Outdated
Show resolved
Hide resolved
Ingrim4
commented
Feb 7, 2026
| int pick = random.nextDouble(totalWeight) < probabilities[i] ? i : alias[i]; | ||
| int pick = boundedNextDouble(seed, totalWeight) < probabilities[i] ? i : alias[i]; | ||
| return values[pick]; | ||
| // int i = random.nextInt(this.n); |
Member
Author
There was a problem hiding this comment.
Validate this custom random logic works
Ingrim4
commented
Feb 7, 2026
orebfuscator-plugin/src/main/java/net/imprex/orebfuscator/Orebfuscator.java
Outdated
Show resolved
Hide resolved
Ingrim4
commented
Feb 7, 2026
orebfuscator-plugin/src/main/java/net/imprex/orebfuscator/iterop/BukkitWorldAccessor.java
Outdated
Show resolved
Hide resolved
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
org.jspecify.annotationsfor nullabilityRelated Issue
Motivation and Context
Prepare project for multi platform (e.g. Paper, Fabric, ...) support.
How Has This Been Tested?
Types of Changes