Skip to content

Commit d0c6c00

Browse files
committed
Merge branch 'mc/1.13' into mc/1.12
2 parents 772397f + 69e0e51 commit d0c6c00

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

BlueMapCore/src/main/java/de/bluecolored/bluemap/core/threejs/BufferAttribute.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ public void writeJson(JsonWriter json) throws IOException {
7777
json.name("array").beginArray();
7878
for (int i = 0; i < values.length; i++) {
7979
// rounding and remove ".0" to save string space
80-
float d = Math.round(values[i] * 10000f) / 10000f;
81-
if (d == (int) d) json.value((int) d);
80+
double d = Math.round(values[i] * 10000d) / 10000d;
81+
if (d == (long) d) json.value((long) d);
8282
else json.value(d);
8383
}
8484
json.endArray();

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![title-banner](https://bluecolored.de/paste/bluemap-title.jpg)
1+
![title-banner](https://bluecolored.de/paste/BluemapBanner.png)
22

33
BlueMap is a tool that generates 3d-maps of your Minecraft worlds and displays them in your browser. Take a look at [this demo](https://bluecolored.de/bluemap). It is really easy to set up - almost plug-and-play - if you use the integrated web-server (optional).
44

@@ -41,9 +41,9 @@ Here is a *(surely incomplete)* list of things that i want to include in future
4141
- marker / region API
4242
- free-flight-controls
4343
- live player positions
44-
- shaders for dynamic day/night
4544
- more configurations
4645
- easier mod-integration
4746
- BlueMap as forge mod
4847
- ability to display the world-border
4948
- animated textures (if feasible)
49+
- add support for models in obj format (if feasible)

0 commit comments

Comments
 (0)