Skip to content

Commit 892cafa

Browse files
committed
Fixed logical mistake in NativeCommandUtils.kt.
Signed-off-by: Pavel Erokhin (MairwunNx) <[email protected]>
1 parent e957149 commit 892cafa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/com/mairwunnx/projectessentials/core/impl/utils/NativeCommandUtils.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ object NativeCommandUtils {
1919
private val logger = LogManager.getLogger()
2020

2121
private fun isOverridden(name: String) =
22-
if (generalConfiguration.getBool(SETTING_NATIVE_COMMAND_REPLACE)) name !in overridden else false
22+
if (generalConfiguration.getBool(SETTING_NATIVE_COMMAND_REPLACE)) name in overridden else false
2323

2424
internal fun replaceRequirementPredicates() {
2525
logger.debug("Replacing native requirement predicates ...")

0 commit comments

Comments
 (0)