Remove "todos" as they have been moved to repo issues
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Bea 2022-10-24 23:21:53 +02:00
parent c4ce5e7399
commit 53e0d1e952
2 changed files with 0 additions and 6 deletions

View File

@ -10,8 +10,6 @@ import wtf.beatrice.nounspicker.utils.PermissionManager;
public class NounsListSubCommand
{
// todo: pagination
public static boolean run(@NotNull CommandSender sender)
{

View File

@ -52,15 +52,11 @@ public class PAPIManager extends PlaceholderExpansion
int pronounId;
// base format is [She/Her]
// todo: allow customizing from config.yml
final String baseFormat = ChatColor.DARK_GRAY + "[" + ChatColor.RESET + "%main%" +
ChatColor.DARK_GRAY + "/" + ChatColor.RESET + "%secondary%" +
ChatColor.DARK_GRAY + "]" + ChatColor.RESET;
// todo: this sends query every time we get a papi call, which is horrible for performance.
// todo: we should cache player pronouns too.
switch (identifier.toLowerCase()) {
case "main_pronoun":
pronounId = Cache.dbManager.getPlayerPronounId(player.getName(), 0);