Skip to content

Terra++ Custom Tree Addon - Release 0.2.5

Latest
Compare
Choose a tag to compare
@DavixDevelop DavixDevelop released this 05 Mar 21:59

This version makes the addon compatible with TerraPlusPlus 1.1.0.627+, and changes the versioning to 0.2.5.[GitHub commit count].

It also fixes a major issue where new chunks were not generating or the server became unresponsive or both. The issue lied within the SegmentsBaker:requestData method, which is a non-blocking method.
To be more precise the requestData method was first making a request to get the tree cover data. After requesting the data, it tried to read the data within the same method (via CompletableFuture<T>:join), therefore blocking the thread, and sequentially blocking new chunks from generating.