mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-06-25 02:04:44 +02:00
Fixes
Notify core of all world loading regardless of generator Optimize plot area fetching Fix plot delete not deleting the plot until restart Fix plot unclaim not removing the owner on any cached plots Change gradle output directory Fix plotme conversion sometimes not copying over the floor/main blocks
This commit is contained in:
@ -46,13 +46,12 @@ processResources {
|
||||
'mcVersion': project.minecraft.version
|
||||
}
|
||||
}
|
||||
// We only want the shadow jar produced
|
||||
jar.enabled = false
|
||||
shadowJar {
|
||||
dependencies {
|
||||
include(dependency(':Core'))
|
||||
}
|
||||
archiveName = "${parent.name}-${project.name}-${parent.version}.jar"
|
||||
destinationDir = file '../target'
|
||||
}
|
||||
shadowJar.doLast {
|
||||
task ->
|
||||
|
@ -21,7 +21,7 @@ public class WorldEvents {
|
||||
SpongeTerrainGen stg = (SpongeTerrainGen) terrain;
|
||||
PS.get().loadWorld(name, stg.parent);
|
||||
}
|
||||
else if (PS.get().config.contains("worlds." + name)) {
|
||||
else {
|
||||
PS.get().loadWorld(name, null);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user