mirror of
https://github.com/BlueMap-Minecraft/BlueMap.git
synced 2025-01-14 04:02:09 +01:00
Merge branch 'mc/1.13'
This commit is contained in:
commit
eb6fe1164f
@ -136,6 +136,9 @@ maps: [
|
||||
name: "End"
|
||||
world: "world_the_end"
|
||||
|
||||
# We dont want a blue sky in the end
|
||||
skyColor: "#080010"
|
||||
|
||||
# In the end is no sky-light, so we need to enable this or we won't see anything.
|
||||
renderCaves: true
|
||||
|
||||
@ -149,6 +152,8 @@ maps: [
|
||||
name: "Nether"
|
||||
world: "world_nether"
|
||||
|
||||
skyColor: "#290000"
|
||||
|
||||
renderCaves: true
|
||||
ambientLight: 0.6
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
name: BlueMap
|
||||
description: "A 3d-map of your Minecraft worlds view-able in your browser using three.js (WebGL)"
|
||||
main: de.bluecolored.bluemap.bukkit.BukkitPlugin
|
||||
version: 0.4.0
|
||||
version: 0.5.0
|
||||
author: "Blue (TBlueF / Lukas Rieger)"
|
||||
authors: [Blue (TBlueF / Lukas Rieger)]
|
||||
website: "https://github.com/BlueMap-Minecraft"
|
||||
|
@ -135,6 +135,9 @@ maps: [
|
||||
name: "End"
|
||||
world: "world/DIM1"
|
||||
|
||||
# We dont want a blue sky in the end
|
||||
skyColor: "#080010"
|
||||
|
||||
# In the end is no sky-light, so we need to enable this or we won't see anything.
|
||||
renderCaves: true
|
||||
|
||||
@ -148,6 +151,8 @@ maps: [
|
||||
name: "Nether"
|
||||
world: "world/DIM-1"
|
||||
|
||||
skyColor: "#290000"
|
||||
|
||||
renderCaves: true
|
||||
ambientLight: 0.6
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
{
|
||||
"modid": "bluemap",
|
||||
"name": "BlueMap",
|
||||
"version": "0.4.0",
|
||||
"version": "0.5.0",
|
||||
"description": "A 3d-map of your Minecraft worlds view-able in your browser using three.js (WebGL)",
|
||||
"url": "https://github.com/BlueMap-Minecraft",
|
||||
"authorList": [
|
||||
|
@ -2,6 +2,6 @@
|
||||
|
||||
public class BlueMap {
|
||||
|
||||
public static final String VERSION = "0.4.0";
|
||||
public static final String VERSION = "0.5.0";
|
||||
|
||||
}
|
||||
|
@ -110,6 +110,8 @@ export default class BlueMap {
|
||||
}
|
||||
|
||||
changeMap(map) {
|
||||
if (this.debugInfo) console.debug("changing map: ", map);
|
||||
|
||||
if (this.map === map) return;
|
||||
|
||||
if (this.hiresTileManager !== undefined) this.hiresTileManager.close();
|
||||
@ -163,7 +165,7 @@ export default class BlueMap {
|
||||
loadLocationHash() {
|
||||
let hashVars = window.location.hash.substring(1).split(':');
|
||||
if (hashVars.length >= 1){
|
||||
if (this.settings[hashVars[0]] !== undefined && this.map !== hashVars[0]){
|
||||
if (this.settings.maps[hashVars[0]] !== undefined && this.map !== hashVars[0]){
|
||||
this.changeMap(hashVars[0]);
|
||||
}
|
||||
}
|
||||
|
@ -131,6 +131,9 @@ maps: [
|
||||
name: "End"
|
||||
world: "world/DIM1"
|
||||
|
||||
# We dont want a blue sky in the end
|
||||
skyColor: "#080010"
|
||||
|
||||
# In the end is no sky-light, so we need to enable this or we won't see anything.
|
||||
renderCaves: true
|
||||
|
||||
@ -144,6 +147,8 @@ maps: [
|
||||
name: "Nether"
|
||||
world: "world/DIM-1"
|
||||
|
||||
skyColor: "#290000"
|
||||
|
||||
renderCaves: true
|
||||
ambientLight: 0.6
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user