Ability to prohibit the entity from being deployedSuggestion
Is there a way to completely prohibit some entities? Setting limit to 0 seems not limiting the entity, but why?
If the entity added to list of limits, I guess it should be limited? Otherwise, why to add the entity in the list at all? :)

If you still insist on not limiting with limit set to 0 can you at least add a blacklisk, or something?
Thanks in advance!

hotfix could be to replace the two

 if (limit > 0)
...
with
...
 if (limit > 0 || limit == -1)

and configure the forbidden things as -1. 

 

if you simply use 0 and >= 0 everything is limited. You could set the default to -1, but that's somewhat meh, too. 

a full banlist with decent text would be good for this.