Transferring of prisoners to different jails works, finalizes #5.
This commit is contained in:
		| @@ -63,13 +63,15 @@ public class JailTransferCommand implements Command { | ||||
| 			sender.sendMessage(jm.getPlugin().getJailIO().getLanguageString(LangString.PROVIDEAJAIL, LangString.TRANSFERRING)); | ||||
| 			return true; | ||||
| 		}else { | ||||
| 			//Check if the jail they did provide exists | ||||
| 			if(jm.getJail(params.getJail()) == null) { | ||||
| 			//Check if the jail they did provided is not a valid jail | ||||
| 			if(!jm.isValidJail(params.getJail())) { | ||||
| 				sender.sendMessage(jm.getPlugin().getJailIO().getLanguageString(LangString.NOJAIL, params.getJail())); | ||||
| 				return true; | ||||
| 			} | ||||
| 		} | ||||
| 		 | ||||
| 		jm.getPlugin().debug("They provided a valid jail, so let's check the target cell."); | ||||
| 		 | ||||
| 		Jail target = jm.getJail(params.getJail()); | ||||
| 		Cell targetCell = null; | ||||
| 		 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 graywolf336
					graywolf336