File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
java/com/codingpupper3033/codebtekml/mapdrawer Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ apply plugin: 'net.minecraftforge.gradle'
1313apply plugin : ' eclipse'
1414apply plugin : ' maven-publish'
1515
16- version = ' 2.0.0 '
16+ version = ' 2.0.1 '
1717group = ' com.codingpupper3033.codebtekml' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
1818archivesBaseName = ' codebtekml'
1919
Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff line change 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" : " " ,
You can’t perform that action at this time.
0 commit comments