Skip to content

Commit f6b6c7a

Browse files
committed
Fix api rendermanager.start() not working when config uses the negative format
1 parent 903ab64 commit f6b6c7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/src/main/java/de/bluecolored/bluemap/common/api/RenderManagerImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public boolean isRunning() {
8585
@Override
8686
public void start() {
8787
if (!isRunning()){
88-
renderManager.start(plugin.getBlueMap().getConfig().getCoreConfig().getRenderThreadCount());
88+
renderManager.start(plugin.getBlueMap().getConfig().getCoreConfig().resolveRenderThreadCount());
8989
}
9090
plugin.getPluginState().setRenderThreadsEnabled(true);
9191
}

0 commit comments

Comments
 (0)