Actually use the override constraint in ticket requests. Closes #1802
This commit is contained in:
parent
178acfbb20
commit
dcb2f2588c
1 changed files with 1 additions and 1 deletions
|
@ -664,7 +664,7 @@ public class ForgeChunkManager
|
|||
throw new RuntimeException("Invalid ticket request");
|
||||
}
|
||||
|
||||
int allowedCount = ticketConstraints.containsKey(modId) ? ticketConstraints.get(modId) : defaultMaxCount;
|
||||
int allowedCount = getMaxTicketLengthFor(modId);
|
||||
|
||||
if (tickets.get(world).get(modId).size() >= allowedCount)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue