Skip to content

Commit eb6fe11

Browse files
committed
Merge branch 'mc/1.13'
2 parents 1455a5a + d21f6ba commit eb6fe11

File tree

7 files changed

+21
-4
lines changed

7 files changed

+21
-4
lines changed

BlueMapBukkit/src/main/resources/bluemap-bukkit.conf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,9 @@ maps: [
136136
name: "End"
137137
world: "world_the_end"
138138

139+
# We dont want a blue sky in the end
140+
skyColor: "#080010"
141+
139142
# In the end is no sky-light, so we need to enable this or we won't see anything.
140143
renderCaves: true
141144

@@ -149,6 +152,8 @@ maps: [
149152
name: "Nether"
150153
world: "world_nether"
151154

155+
skyColor: "#290000"
156+
152157
renderCaves: true
153158
ambientLight: 0.6
154159

BlueMapBukkit/src/main/resources/plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: BlueMap
22
description: "A 3d-map of your Minecraft worlds view-able in your browser using three.js (WebGL)"
33
main: de.bluecolored.bluemap.bukkit.BukkitPlugin
4-
version: 0.4.0
4+
version: 0.5.0
55
author: "Blue (TBlueF / Lukas Rieger)"
66
authors: [Blue (TBlueF / Lukas Rieger)]
77
website: "https://github.com/BlueMap-Minecraft"

BlueMapCLI/src/main/resources/bluemap-cli.conf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,9 @@ maps: [
135135
name: "End"
136136
world: "world/DIM1"
137137

138+
# We dont want a blue sky in the end
139+
skyColor: "#080010"
140+
138141
# In the end is no sky-light, so we need to enable this or we won't see anything.
139142
renderCaves: true
140143

@@ -148,6 +151,8 @@ maps: [
148151
name: "Nether"
149152
world: "world/DIM-1"
150153

154+
skyColor: "#290000"
155+
151156
renderCaves: true
152157
ambientLight: 0.6
153158

BlueMapCommon/src/main/resources/mcmod.info

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
"modid": "bluemap",
44
"name": "BlueMap",
5-
"version": "0.4.0",
5+
"version": "0.5.0",
66
"description": "A 3d-map of your Minecraft worlds view-able in your browser using three.js (WebGL)",
77
"url": "https://github.com/BlueMap-Minecraft",
88
"authorList": [

BlueMapCore/src/main/java/de/bluecolored/bluemap/core/BlueMap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
public class BlueMap {
44

5-
public static final String VERSION = "0.4.0";
5+
public static final String VERSION = "0.5.0";
66

77
}

BlueMapCore/src/main/webroot/js/libs/BlueMap.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,8 @@ export default class BlueMap {
110110
}
111111

112112
changeMap(map) {
113+
if (this.debugInfo) console.debug("changing map: ", map);
114+
113115
if (this.map === map) return;
114116

115117
if (this.hiresTileManager !== undefined) this.hiresTileManager.close();
@@ -163,7 +165,7 @@ export default class BlueMap {
163165
loadLocationHash() {
164166
let hashVars = window.location.hash.substring(1).split(':');
165167
if (hashVars.length >= 1){
166-
if (this.settings[hashVars[0]] !== undefined && this.map !== hashVars[0]){
168+
if (this.settings.maps[hashVars[0]] !== undefined && this.map !== hashVars[0]){
167169
this.changeMap(hashVars[0]);
168170
}
169171
}

BlueMapSponge/src/main/resources/bluemap-sponge.conf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,9 @@ maps: [
131131
name: "End"
132132
world: "world/DIM1"
133133

134+
# We dont want a blue sky in the end
135+
skyColor: "#080010"
136+
134137
# In the end is no sky-light, so we need to enable this or we won't see anything.
135138
renderCaves: true
136139

@@ -144,6 +147,8 @@ maps: [
144147
name: "Nether"
145148
world: "world/DIM-1"
146149

150+
skyColor: "#290000"
151+
147152
renderCaves: true
148153
ambientLight: 0.6
149154

0 commit comments

Comments
 (0)