mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-08-07 13:03:06 +00:00
incremented version number
This commit is contained in:
parent
c606b4d893
commit
c22a476908
4 changed files with 9 additions and 5 deletions
|
@ -571,7 +571,7 @@ public class SQLManager extends AbstractDB {
|
|||
if (element.contains(":")) {
|
||||
final String[] split = element.split(":");
|
||||
try {
|
||||
flags.add(new Flag(FlagManager.getFlag(split[0], true), split[1]));
|
||||
flags.add(new Flag(FlagManager.getFlag(split[0], true), split[1].replace("´", ",").replace("¯", ":")));
|
||||
}
|
||||
catch (final Exception e) {
|
||||
exception = true;
|
||||
|
@ -649,7 +649,7 @@ public class SQLManager extends AbstractDB {
|
|||
if (i != 0) {
|
||||
flag_string.append(",");
|
||||
}
|
||||
flag_string.append(flag.getKey() + ":" + flag.getValue());
|
||||
flag_string.append(flag.getKey() + ":" + flag.getValue().replace(",", "´").replace(":", "¯"));
|
||||
i++;
|
||||
}
|
||||
runTask(new Runnable() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue