diff --git a/src/main/java/com/graywolf336/jail/PrisonerManager.java b/src/main/java/com/graywolf336/jail/PrisonerManager.java index bed057b..a652e66 100644 --- a/src/main/java/com/graywolf336/jail/PrisonerManager.java +++ b/src/main/java/com/graywolf336/jail/PrisonerManager.java @@ -411,6 +411,15 @@ public class PrisonerManager { } } + /** + * Transfers the prisoner from one jail, or cell, to another jail, and/or cell. + * + * @param origin The jail where they are coming from. + * @param originCell The cell where they are coming from. + * @param targetJail The jail we're transferring them from. + * @param targetCell The cell we're putting them into. + * @param prisoner The prisoner data we're handling. + */ public void transferPrisoner(Jail origin, Cell originCell, Jail targetJail, Cell targetCell, Prisoner prisoner) { Player player = pl.getServer().getPlayer(prisoner.getName());