mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2024-12-23 00:15:06 +00:00
Fix negation issue.
This commit is contained in:
parent
b0a3f70cbd
commit
5079361fbf
1 changed files with 1 additions and 1 deletions
|
@ -1729,7 +1729,7 @@ public class PS {
|
|||
parent.mkdirs();
|
||||
}
|
||||
MainUtil.sendMessage(sender, "$2 - Output: " + newJar);
|
||||
if (newJar.delete()) {
|
||||
if (!newJar.delete()) {
|
||||
MainUtil.sendMessage(sender, "Failed to update PlotSquared");
|
||||
MainUtil.sendMessage(sender, "Jar file failed to delete.");
|
||||
MainUtil.sendMessage(sender, " - Please update manually");
|
||||
|
|
Loading…
Reference in a new issue