We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb2de0f commit 9b192e7Copy full SHA for 9b192e7
api/src/main/java/me/tofaa/entitylib/ve/ViewerEngine.java
@@ -121,7 +121,7 @@ public void clearTracked() {
121
* @return true if the user passed and did not fail any rules, false otherwise
122
*/
123
public boolean canSpawnFor(User user, WrapperEntity entity) {
124
- if (entity.getViewerRules().stream().allMatch(rule -> rule.shouldSee(user))) return true;
+ if (!entity.getViewerRules().isEmpty() && entity.getViewerRules().stream().allMatch(rule -> rule.shouldSee(user))) return true;
125
return globalRules.stream().allMatch(rule -> rule.shouldSee(user));
126
}
127
0 commit comments