Skip to content

Commit

Permalink
- Fix deleting objects from the SQL DB which are keyed by a UUID.
Browse files Browse the repository at this point in the history
    - Closes #7592.
  - Fix /plot group tab completion.
  • Loading branch information
LlmDl committed Sep 19, 2024
1 parent 59ff26e commit 066003f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,8 @@ else if (args.length == 3)
case "set":
if (args.length == 3)
return NameUtil.filterByStart(Arrays.asList("perm", "maxjoindays", "minjoindays"), args[2]);
if (args.length > 3 && args[2].equalsIgnoreCase("perm"))
return permTabComplete(StringMgmt.remArgs(args, 3));
case "trust":
if (args.length == 3)
return NameUtil.filterByStart(Arrays.asList("add", "remove"), args[2]);
Expand All @@ -281,7 +283,7 @@ else if (args.length == 3)
if (args.length == 4)
return NameUtil.filterByStart(getTownyStartingWith(args[3], "r"), args[3]);
default:
return permTabComplete(StringMgmt.remFirstArg(args));
return Collections.emptyList();
}

case "jailcell":
Expand Down
5 changes: 4 additions & 1 deletion Towny/src/main/resources/ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10020,4 +10020,7 @@ v0.92.0.11:
- Bump org.apache.logging.log4j:log4j-core from 2.23.1 to 2.24.0.
- Bump org.bstats:bstats-bukkit from 3.0.2 to 3.0.3.
- Bump org.junit.jupiter:junit-jupiter from 5.10.3 to 5.11.0.
- Bump org.junit.jupiter:junit-jupiter-api from 5.10.3 to 5.11.0.
- Bump org.junit.jupiter:junit-jupiter-api from 5.10.3 to 5.11.0.
- Fix deleting objects from the SQL DB which are keyed by a UUID.
- Closes #7592.
- Fix /plot group tab completion.

0 comments on commit 066003f

Please sign in to comment.