File tree Expand file tree Collapse file tree 7 files changed +21
-4
lines changed
BlueMapBukkit/src/main/resources
BlueMapCLI/src/main/resources
BlueMapCommon/src/main/resources
java/de/bluecolored/bluemap/core
BlueMapSponge/src/main/resources Expand file tree Collapse file tree 7 files changed +21
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11name : BlueMap
22description : " A 3d-map of your Minecraft worlds view-able in your browser using three.js (WebGL)"
33main : de.bluecolored.bluemap.bukkit.BukkitPlugin
4- version : 0.4 .0
4+ version : 0.5 .0
55author : " Blue (TBlueF / Lukas Rieger)"
66authors : [Blue (TBlueF / Lukas Rieger)]
77website : " https://github.com/BlueMap-Minecraft"
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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" : [
Original file line number Diff line number Diff line change 22
33public class BlueMap {
44
5- public static final String VERSION = "0.4 .0" ;
5+ public static final String VERSION = "0.5 .0" ;
66
77}
Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments