diff --git a/Server/src/main/core/game/system/command/sets/MiscCommandSet.kt b/Server/src/main/core/game/system/command/sets/MiscCommandSet.kt index dc63825c9..8c0dd1a32 100644 --- a/Server/src/main/core/game/system/command/sets/MiscCommandSet.kt +++ b/Server/src/main/core/game/system/command/sets/MiscCommandSet.kt @@ -668,8 +668,8 @@ class MiscCommandSet : CommandSet(Privilege.ADMIN){ reject(player, usageStr) } when(args[1]) { - "true" -> player.setAttribute("allow_admin_aggression", true) - "false" -> player.removeAttribute("allow_admin_aggression") + "true" -> player.setAttribute("/save:allow_admin_aggression", true) + "false" -> player.setAttribute("/save:allow_admin_aggression", false) else -> reject(player, usageStr) }