mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 21:26:45 +01:00
Merge remote-tracking branch 'origin/master'
# Conflicts: # Sponge/src/main/java/com/plotsquared/sponge/SpongeMain.java
This commit is contained in:
commit
b5cc6eeb0c
2
.github/ISSUE_TEMPLATE.md
vendored
2
.github/ISSUE_TEMPLATE.md
vendored
@ -7,6 +7,6 @@
|
||||
|
||||
Make sure you've completed the following steps (put an X between of brackets):
|
||||
- [] Include `/plot debugpaste`
|
||||
- [] Made sure there aren't duplicates of this report [(Use Search)](https://github.com/IntellectualSites/PlotSquared/issues)
|
||||
- [] Made sure there aren't duplicates of this report [(Use Search)](https://github.com/IntellectualSites/PlotSquared/issues?utf8=%E2%9C%93&q=is%3Aissue)
|
||||
- [] Made sure you're using an updated version of PlotSquared
|
||||
- [] Made sure the bug/error isn't caused by any other plugin
|
||||
|
@ -302,7 +302,7 @@ public class PlotAPI {
|
||||
/**
|
||||
* Get the settings for a world.
|
||||
*
|
||||
* @param world The world
|
||||
* @param world the world to retrieve settings from
|
||||
*
|
||||
* @return The {@link PlotArea} for the world or null if not in plotworld
|
||||
*
|
||||
@ -329,8 +329,8 @@ public class PlotAPI {
|
||||
/**
|
||||
* Send a message to a player.
|
||||
*
|
||||
* @param player Player that will receive the message
|
||||
* @param caption Caption
|
||||
* @param player the recipient of the message
|
||||
* @param caption the message
|
||||
*
|
||||
* @see MainUtil#sendMessage(PlotPlayer, C, String...)
|
||||
*/
|
||||
@ -339,10 +339,10 @@ public class PlotAPI {
|
||||
}
|
||||
|
||||
/**
|
||||
* Send a message to a player. Supports color codes.
|
||||
* Send a message to a player. The message supports color codes.
|
||||
*
|
||||
* @param player Player that will receive the message
|
||||
* @param string The message
|
||||
* @param player the recipient of the message
|
||||
* @param string the message
|
||||
*
|
||||
* @see MainUtil#sendMessage(PlotPlayer, String)
|
||||
*/
|
||||
@ -351,9 +351,9 @@ public class PlotAPI {
|
||||
}
|
||||
|
||||
/**
|
||||
* Send a message to the console. Supports color codes.
|
||||
* Send a message to the console. The message supports color codes.
|
||||
*
|
||||
* @param message Message that should be sent to the console
|
||||
* @param message the message
|
||||
*
|
||||
* @see MainUtil#sendConsoleMessage(C, String...)
|
||||
*/
|
||||
@ -364,7 +364,7 @@ public class PlotAPI {
|
||||
/**
|
||||
* Send a message to the console.
|
||||
*
|
||||
* @param caption The caption
|
||||
* @param caption the message
|
||||
*
|
||||
* @see #sendConsoleMessage(String)
|
||||
* @see C
|
||||
@ -376,7 +376,7 @@ public class PlotAPI {
|
||||
/**
|
||||
* Register a flag for use in plots.
|
||||
*
|
||||
* @param flag Flag that should be registered
|
||||
* @param flag the flag being registered
|
||||
*
|
||||
*/
|
||||
public void addFlag(Flag<?> flag) {
|
||||
@ -386,7 +386,7 @@ public class PlotAPI {
|
||||
/**
|
||||
* Get a plot based on the ID.
|
||||
*
|
||||
* @param world World in which the plot is located
|
||||
* @param world the world the plot is located in
|
||||
* @param x The PlotID x coordinate
|
||||
* @param z The PlotID y coordinate
|
||||
*
|
||||
@ -409,7 +409,7 @@ public class PlotAPI {
|
||||
/**
|
||||
* Get a plot based on the location.
|
||||
*
|
||||
* @param location The location to retrieve the plot from
|
||||
* @param location the location to check
|
||||
*
|
||||
* @return plot if found, otherwise it creates a temporary plot
|
||||
*
|
||||
@ -425,7 +425,7 @@ public class PlotAPI {
|
||||
/**
|
||||
* Get a plot based on the player location.
|
||||
*
|
||||
* @param player Get the current plot for the player location
|
||||
* @param player the player to check
|
||||
*
|
||||
* @return plot if found, otherwise it creates a temporary plot
|
||||
*
|
||||
|
@ -539,7 +539,6 @@ public class MemorySection implements ConfigurationSection {
|
||||
List<?> list = getList(path);
|
||||
|
||||
if (list == null) {
|
||||
PS.get().log(path + " is null");
|
||||
return new ArrayList<>(0);
|
||||
}
|
||||
|
||||
|
@ -664,9 +664,8 @@ public class PS {
|
||||
}
|
||||
}
|
||||
} else {
|
||||
for (Entry<PlotId, Plot> entry : plots.entrySet()) {
|
||||
Plot plot = entry.getValue();
|
||||
plot.setArea(plotArea);
|
||||
for (Plot entry : plots.values()) {
|
||||
entry.setArea(plotArea);
|
||||
}
|
||||
}
|
||||
Set<PlotCluster> clusters = this.clusters_tmp.remove(plotArea.toString());
|
||||
@ -821,8 +820,7 @@ public class PS {
|
||||
}
|
||||
map.putAll(entry.getValue());
|
||||
} else {
|
||||
for (Entry<PlotId, Plot> entry2 : entry.getValue().entrySet()) {
|
||||
Plot plot = entry2.getValue();
|
||||
for (Plot plot : entry.getValue().values()) {
|
||||
plot.setArea(area);
|
||||
area.addPlot(plot);
|
||||
}
|
||||
@ -2081,7 +2079,7 @@ public class PS {
|
||||
* - Translation: PlotSquared.use_THIS.yml, style.yml<br>
|
||||
*/
|
||||
public void setupConfigs() {
|
||||
File folder = new File(this.IMP.getDirectory() + File.separator + "config");
|
||||
File folder = new File(this.IMP.getDirectory(),"config");
|
||||
if (!folder.exists() && !folder.mkdirs()) {
|
||||
PS.log(C.PREFIX + "&cFailed to create the /plugins/config folder. Please create it manually.");
|
||||
}
|
||||
@ -2102,11 +2100,9 @@ public class PS {
|
||||
PS.log("failed to save style.yml");
|
||||
}
|
||||
try {
|
||||
this.configFile = new File(this.IMP.getDirectory() + File.separator + "config" + File.separator + "settings.yml");
|
||||
if (!this.configFile.exists()) {
|
||||
if (!this.configFile.createNewFile()) {
|
||||
PS.log("Could not create the settings file, please create \"settings.yml\" manually.");
|
||||
}
|
||||
this.configFile = new File(folder,"settings.yml");
|
||||
if (!this.configFile.exists() && !this.configFile.createNewFile()) {
|
||||
PS.log("Could not create the settings file, please create \"settings.yml\" manually.");
|
||||
}
|
||||
this.config = YamlConfiguration.loadConfiguration(this.configFile);
|
||||
setupConfig();
|
||||
@ -2114,11 +2110,9 @@ public class PS {
|
||||
PS.log("Failed to save settings.yml");
|
||||
}
|
||||
try {
|
||||
this.storageFile = new File(this.IMP.getDirectory() + File.separator + "config" + File.separator + "storage.yml");
|
||||
if (!this.storageFile.exists()) {
|
||||
if (!this.storageFile.createNewFile()) {
|
||||
PS.log("Could not the storage settings file, please create \"storage.yml\" manually.");
|
||||
}
|
||||
this.storageFile = new File(folder,"storage.yml");
|
||||
if (!this.storageFile.exists() && !this.storageFile.createNewFile()) {
|
||||
PS.log("Could not the storage settings file, please create \"storage.yml\" manually.");
|
||||
}
|
||||
this.storage = YamlConfiguration.loadConfiguration(this.storageFile);
|
||||
setupStorage();
|
||||
@ -2126,11 +2120,9 @@ public class PS {
|
||||
PS.log("Failed to save storage.yml");
|
||||
}
|
||||
try {
|
||||
this.commandsFile = new File(this.IMP.getDirectory() + File.separator + "config" + File.separator + "commands.yml");
|
||||
if (!this.commandsFile.exists()) {
|
||||
if (!this.commandsFile.createNewFile()) {
|
||||
PS.log("Could not the storage settings file, please create \"commands.yml\" manually.");
|
||||
}
|
||||
this.commandsFile = new File(folder,"commands.yml");
|
||||
if (!this.commandsFile.exists() && !this.commandsFile.createNewFile()) {
|
||||
PS.log("Could not the storage settings file, please create \"commands.yml\" manually.");
|
||||
}
|
||||
this.commands = YamlConfiguration.loadConfiguration(this.commandsFile);
|
||||
setupStorage();
|
||||
@ -2245,9 +2237,9 @@ public class PS {
|
||||
}
|
||||
}
|
||||
if (this.plots_tmp != null) {
|
||||
for (Entry<String, HashMap<PlotId, Plot>> entry : this.plots_tmp.entrySet()) {
|
||||
for (Entry<PlotId, Plot> entry2 : entry.getValue().entrySet()) {
|
||||
runnable.run(entry2.getValue());
|
||||
for (HashMap<PlotId, Plot> entry : this.plots_tmp.values()) {
|
||||
for (Plot entry2 : entry.values()) {
|
||||
runnable.run(entry2);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -2298,8 +2290,8 @@ public class PS {
|
||||
@Deprecated
|
||||
public Set<String> getPlotWorldStrings() {
|
||||
HashSet<String> set = new HashSet<>(this.plotAreaMap.size());
|
||||
for (Entry<String, PlotArea[]> entry : this.plotAreaMap.entrySet()) {
|
||||
set.add(entry.getKey());
|
||||
for (String entry : this.plotAreaMap.keySet()) {
|
||||
set.add(entry);
|
||||
}
|
||||
return set;
|
||||
}
|
||||
|
@ -54,7 +54,9 @@ public class PlotListener {
|
||||
return true;
|
||||
}
|
||||
} else {
|
||||
titles = plot.getFlag(Flags.TITLES, true);
|
||||
if (Settings.TITLES) {
|
||||
titles = plot.getFlag(Flags.TITLES, true);
|
||||
}
|
||||
Optional<String> greetingFlag = plot.getFlag(Flags.GREETING);
|
||||
if (greetingFlag.isPresent()) {
|
||||
greeting = greetingFlag.get();
|
||||
|
@ -62,6 +62,7 @@ import org.slf4j.Logger;
|
||||
import org.spongepowered.api.Game;
|
||||
import org.spongepowered.api.Server;
|
||||
import org.spongepowered.api.Sponge;
|
||||
import org.spongepowered.api.config.ConfigDir;
|
||||
import org.spongepowered.api.entity.living.player.Player;
|
||||
import org.spongepowered.api.event.Listener;
|
||||
import org.spongepowered.api.event.game.state.GameAboutToStartServerEvent;
|
||||
@ -73,6 +74,7 @@ import org.spongepowered.api.world.World;
|
||||
import org.spongepowered.api.world.gen.GenerationPopulator;
|
||||
import org.spongepowered.api.world.gen.WorldGenerator;
|
||||
import org.spongepowered.api.world.gen.WorldGeneratorModifier;
|
||||
import java.nio.file.Path;
|
||||
|
||||
@Plugin(id = "plotsquared", name = "PlotSquared", description = "Easy, yet powerful Plot World generation and management.",
|
||||
url = "https://github.com/IntellectualSites/PlotSquared", version = "3.3.3")
|
||||
@ -88,8 +90,13 @@ public class SpongeMain implements IPlotMain {
|
||||
|
||||
@Inject
|
||||
private Game game;
|
||||
|
||||
private Server server;
|
||||
|
||||
@Inject
|
||||
@ConfigDir(sharedRoot = false)
|
||||
private Path privateConfigDir;
|
||||
|
||||
private GameProfileManager resolver;
|
||||
|
||||
// @Override
|
||||
@ -139,7 +146,7 @@ public class SpongeMain implements IPlotMain {
|
||||
|
||||
@Override
|
||||
public File getDirectory() {
|
||||
return new File("mods/PlotSquared");
|
||||
return privateConfigDir.toFile();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user