Build "Fawe" and credit Matt ❤️

Also update PlotSquared stuff
Dieser Commit ist enthalten in:
NotMyFault 2019-08-23 15:48:51 +02:00
Ursprung 20fff1c668
Commit c5d3c4dca7
4 geänderte Dateien mit 9 neuen und 8 gelöschten Zeilen

Datei anzeigen

@ -7,19 +7,19 @@ plugins {
logger.lifecycle("""
*******************************************
You are building WorldEdit!
You are building FastAsyncWorldEdit!
If you encounter trouble:
1) Read COMPILING.md if you haven't yet
2) Try running 'build' in a separate Gradle run
3) Use gradlew and not gradle
4) If you still need help, ask on Discord! https://discord.gg/enginehub
4) If you still need help, ask on Discord! https://discord.gg/cSMxtGn
Output files will be in [subproject]/build/libs
*******************************************
""")
//TODO FIX THIS WHEN I FEEL LIKE IT
var rootVersion = "1.13"
var rootVersion = "1.14"
var revision: String = ""
var buildNumber = ""
var date: String = ""
@ -63,7 +63,7 @@ ext {
//
//version = String.format("%s.%s", rootVersion, buildNumber)
version = String.format("%s.%s", rootVersion, buildNumber)
version = String.format("%s-%s", rootVersion, buildNumber)
if (!project.hasProperty("gitCommitHash")) {
apply(plugin = "org.ajoberstar.grgit")

Datei anzeigen

@ -94,12 +94,13 @@ fun Project.applyPlatformAndCoreConfiguration() {
fun Project.applyShadowConfiguration() {
tasks.named<ShadowJar>("shadowJar") {
archiveClassifier.set("dist")
// archiveClassifier.set("dist")
dependencies {
include(project(":worldedit-libs:core"))
include(project(":worldedit-libs:${project.name.replace("worldedit-", "")}"))
include(project(":worldedit-core"))
}
archiveName = "FastAsyncWorldEdit-${project.version}.jar"
exclude("GradleStart**")
exclude(".cache")
exclude("LICENSE*")

Datei anzeigen

@ -4,7 +4,7 @@ version: "${internalVersion}"
load: STARTUP
api-version: 1.13
description: Fast Async WorldEdit plugin
authors: [Empire92]
authors: [Empire92, MattBDev]
loadbefore: [BannerBoard, WorldGuard, PlotSquared, AsyncWorldEdit, AsyncWorldEditInjector]
database: false
permissions:

Datei anzeigen

@ -59,9 +59,9 @@ public class PlotSetBiome extends Command {
Collection<BiomeType> knownBiomes = BiomeTypes.values();
final BiomeType biome = Biomes.findBiomeByName(knownBiomes, args[0], biomeRegistry);
if (biome == null) {
String biomes = StringMan.join(WorldUtil.IMP.getBiomeList(), Captions.BLOCK_LIST_SEPARATER.s());
String biomes = StringMan.join(WorldUtil.IMP.getBiomeList(), Captions.BLOCK_LIST_SEPARATER.toString());
Captions.NEED_BIOME.send(player);
MainUtil.sendMessage(player, Captions.SUBCOMMAND_SET_OPTIONS_HEADER.s() + biomes);
MainUtil.sendMessage(player, Captions.SUBCOMMAND_SET_OPTIONS_HEADER.toString() + biomes);
return;
}
confirm.run(this, new Runnable() {