Fix type in ForgeChunkManager.ticketCountAvaILableFor, thanks iChun PR: #285
This commit is contained in:
parent
0e82a3952d
commit
c68dfae100
1 changed files with 3 additions and 1 deletions
|
@ -605,7 +605,9 @@ public class ForgeChunkManager
|
|||
return allowedCount;
|
||||
}
|
||||
|
||||
public static int ticketCountAvaliableFor(String username)
|
||||
@Deprecated
|
||||
public static int ticketCountAvaliableFor(String username){ return ticketCountAvailableFor(username); }
|
||||
public static int ticketCountAvailableFor(String username)
|
||||
{
|
||||
return playerTicketLength - playerTickets.get(username).size();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue