File Details
nyfsspiders-forge-1.20.1-2.1.2-all.jar
- R
- Nov 9, 2025
- 300.75 KB
- 12.3K
- 1.20.1
- Forge
File Name
nyfsspiders-forge-1.20.1-2.1.2-all.jar
Supported Versions
- 1.20.1
Curse Maven Snippet
Changes from previous build
- Reverted pathfinding expansions to original values (200 instead of 100)
- `CustomPathFinder.java`: maxExpansions 100 → 200
- `AdvancedPathFinder.java`: retrace expansions 100 → 200
Why these changes were needed
The reduced pathfinding expansions (100) were too aggressive for complex scenarios:
- Water-to-land pathfinding often failed, causing spiders to retry repeatedly (actually increasing CPU usage)
- Complex terrain navigation would fail and retry, appearing as "stuck" behavior
- Original 200 expansions provide better success rate with less total work (1 success vs 10 failures)
### Summary
This build attempts to address performance regressions.

