You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using Jellyfishing with Blame on, Blame reports in the log that the Corrock Tower configuredfeature is unabled to be turned back into json (typically for mod compat). https://paste.ee/p/V7G6h
The issue is the 250 for count method is too large for the count codec which is limited to -10 to 128. Instead, a simple solution is to swap func_242731_b(250) with withPlacement(Placement.COUNT_EXTRA.configure(new AtSurfaceWithExtraConfig(256, 0F, 0))) since the count extra placement does not have any limit. Also, the 100 for the OreFeatureConfig is too large as the max is 64 for it. In fact, 100 is a bit of overkill as remember, features only get a 3x3 chunk area they can spawn in. So at 100 size, the feature will pretty much always be cut off at chunk edges for the 3x3 chunk area. Perhaps lowering it to 64 and bumping up the count slightly will be better?
When using Jellyfishing with Blame on, Blame reports in the log that the Corrock Tower configuredfeature is unabled to be turned back into json (typically for mod compat). https://paste.ee/p/V7G6h
The issue is the 250 for count method is too large for the count codec which is limited to -10 to 128. Instead, a simple solution is to swap
func_242731_b(250)
withwithPlacement(Placement.COUNT_EXTRA.configure(new AtSurfaceWithExtraConfig(256, 0F, 0)))
since the count extra placement does not have any limit. Also, the 100 for the OreFeatureConfig is too large as the max is 64 for it. In fact, 100 is a bit of overkill as remember, features only get a 3x3 chunk area they can spawn in. So at 100 size, the feature will pretty much always be cut off at chunk edges for the 3x3 chunk area. Perhaps lowering it to 64 and bumping up the count slightly will be better?Jellyfishing/src/main/java/blueduck/jellyfishing/registry/JellyfishingConfiguredFeatures.java
Line 21 in 4a80d8f
Hope this helps!
The text was updated successfully, but these errors were encountered: