Creation a CreationPlayer with the jailname and cellname.

This commit is contained in:
graywolf336
2013-12-09 14:45:24 -06:00
parent d85b2db190
commit b5133842c0
2 changed files with 2 additions and 5 deletions

View File

@ -248,7 +248,7 @@ public class JailManager {
if(isCreatingACell(player)) {
return false;
}else {
this.cellCreators.put(player.toLowerCase(), new CreationPlayer(cellName));
this.cellCreators.put(player.toLowerCase(), new CreationPlayer(jailName, cellName));
return true;
}
}