Skip to content

Commit aa4b7f3

Browse files
Updating to 2.0.1
1 parent 6a22ade commit aa4b7f3

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ apply plugin: 'net.minecraftforge.gradle'
1313
apply plugin: 'eclipse'
1414
apply plugin: 'maven-publish'
1515

16-
version = '2.0.0'
16+
version = '2.0.1'
1717
group = 'com.codingpupper3033.codebtekml' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
1818
archivesBaseName = 'codebtekml'
1919

src/main/java/com/codingpupper3033/codebtekml/mapdrawer/CommandSender.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ public void write(int b) throws IOException {
2727
}
2828

2929
private void output() {
30-
Minecraft.getMinecraft().player.sendChatMessage(buffer.toString());
30+
String command = buffer.toString();
31+
command = command.replace("minecraft:",""); // World Edit doesn't know what minecraft: is ._.
32+
Minecraft.getMinecraft().player.sendChatMessage(command);
3133

3234
buffer = new StringBuffer();
3335
}

src/main/resources/mcmod.info

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"modid": "codebtekml",
44
"name": "BTE KML Importer",
55
"description": "Imports KML and KMZ files into the Build the Earth server. KML & KMZ are standard ways to export points and lines on a map.",
6-
"version": "2.0.0",
6+
"version": "2.0.1",
77
"mcversion": "1.12.2",
88
"url": "",
99
"updateUrl": "",

0 commit comments

Comments
 (0)