From 500385cd3e4b57106a24bd0c6bd4dff27e0f313c Mon Sep 17 00:00:00 2001 From: OmegaWeapon_ Date: Mon, 25 Nov 2019 02:57:36 +1030 Subject: [PATCH] Add temporary modifier to the argument list for permission/parent settemp (#1817) --- .../me/lucko/luckperms/common/locale/command/CommandSpec.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common/src/main/java/me/lucko/luckperms/common/locale/command/CommandSpec.java b/common/src/main/java/me/lucko/luckperms/common/locale/command/CommandSpec.java index 5c604dfae..0e0ab1166 100644 --- a/common/src/main/java/me/lucko/luckperms/common/locale/command/CommandSpec.java +++ b/common/src/main/java/me/lucko/luckperms/common/locale/command/CommandSpec.java @@ -229,6 +229,7 @@ public enum CommandSpec { Argument.create("node", true, "the permission node to set"), Argument.create("true|false", false, "the value of the node"), Argument.create("duration", true, "the duration until the permission node expires"), + Argument.create("temporary modifier", false, "how the temporary permission should be applied"), Argument.create("context...", false, "the contexts to add the permission in") ) ), @@ -291,6 +292,7 @@ public enum CommandSpec { Argument.list( Argument.create("group", true, "the group to inherit from"), Argument.create("duration", true, "the duration of the group membership"), + Argument.create("temporary modifier", false, "how the temporary permission should be applied"), Argument.create("context...", false, "the contexts to inherit the group in") ) ),