diff --git a/src/main/java/com/graywolf336/jail/PrisonerManager.java b/src/main/java/com/graywolf336/jail/PrisonerManager.java index b5c228c..b9d6d8c 100644 --- a/src/main/java/com/graywolf336/jail/PrisonerManager.java +++ b/src/main/java/com/graywolf336/jail/PrisonerManager.java @@ -59,7 +59,7 @@ public class PrisonerManager { } /** - * Does everything preparing for the jailing of the provided prisoner, if they are online it forwards it to {@link #jailPrisoner(Jail, Cell, Player, Prisoner)}. + * Does everything preparing for the jailing of the provided prisoner, if they are online it forwards it to {@link #jailPrisoner(Jail, ICell, Player, Prisoner)}. * *

* @@ -355,9 +355,10 @@ public class PrisonerManager { /** * Schedules a prisoner to be released, this method is to be used async. + * + * If you're wanting to unjail a prisoner, see the {@link #unJail(Jail, ICell, Player, Prisoner, CommandSender)} method. * * @param prisoner to be released. - * @see If you're wanting to unjail a prisoner, see the unjail method. */ public void schedulePrisonerRelease(Prisoner prisoner) { releases.add(prisoner); @@ -398,7 +399,7 @@ public class PrisonerManager { } /** - * Unjails a prisoner from jail, removing all their data. + * Unjails a prisoner, sync, from jail, removing all their data. * *

*