[AB-xxx] adding configuration to allow people to click on the honey pot based on an experience level

This commit is contained in:
Sheldan
2024-02-04 20:46:03 +01:00
parent 485782ff16
commit fc887d2f36
4 changed files with 66 additions and 14 deletions

View File

@@ -18,5 +18,9 @@ public interface SystemCondition {
public static boolean consideredSuccessful(Result result) {
return result == Result.SUCCESSFUL || result == Result.IGNORED;
}
public static boolean isSuccessful(Result result) {
return result == Result.SUCCESSFUL;
}
}
}