Bandit and outpost stopped workingSolved

Hello after I updated to the most recently version, /bandit and /outpost stopped working. It says "Unknow command". I already tried deleting all data/config files but it didn't helped it. Even wiping didn't help. I'm temporarly using /town as outpost. My JSON config are the following:

{
  "Settings": {
    "Interrupt TP": {
      "Above Water": false,
      "Balloon": true,
      "Boats": false,
      "Cargo Ship": true,
      "Cold": true,
      "Excavator": false,
      "Hot": false,
      "Hostile": false,
      "Hurt": true,
      "Lift": true,
      "Monument": false,
      "Mounted": true,
      "Oil Rig": false,
      "Safe Zone": false,
      "Swimming": false
    },
    "Block Teleport (NoEscape)": true,
    "Block Teleport (ZoneManager)": false,
    "Chat Name": "<color=red>Teleporte</color>: ",
    "Chat Steam64ID": 76561199056025689,
    "Check Boundaries On Teleport X Y Z": true,
    "Draw Sphere On Set Home": false,
    "Homes Enabled": true,
    "TPR Enabled": true,
    "Town Enabled": true,
    "Outpost Enabled": true,
    "Bandit Enabled": true,
    "Strict Foundation Check": false,
    "Cave Distance Small": 50.0,
    "Cave Distance Medium": 70.0,
    "Cave Distance Large": 110.0,
    "Default Monument Size": 50.0,
    "Minimum Temp": 0.0,
    "Maximum Temp": 40.0,
    "Blocked Items": {},
    "Bypass CMD": "pay",
    "Use Economics": false,
    "Use Server Rewards": false,
    "Wipe On Upgrade Or Change": true,
    "Auto Generate Outpost Location": true,
    "Auto Generate Bandit Location": true
  },
  "Admin": {
    "Announce Teleport To Target": false,
    "Usable By Admins": true,
    "Usable By Moderators": true,
    "Location Radius": 25,
    "Teleport Near Default Distance": 30
  },
  "Outpost": {
    "Allow Cave": true,
    "Cooldown": 60,
    "Countdown": 30,
    "Daily Limit": 9999,
    "VIP Daily Limits": {
      "nteleportation.vip-0": 9999,
      "nteleportation.vip-1": 9999,
      "nteleportation.vip-2": 9999,
      "nteleportation.vip-3": 9999,
      "nteleportation.vip-4": 9999
    },
    "VIP Cooldowns": {
      "nteleportation.vip-0": 40,
      "nteleportation.vip-1": 30,
      "nteleportation.vip-2": 15,
      "nteleportation.vip-3": 10,
      "nteleportation.vip-4": 8
    },
    "VIP Countdowns": {
      "nteleportation.vip-0": 20,
      "nteleportation.vip-1": 15,
      "nteleportation.vip-2": 10,
      "nteleportation.vip-3": 8,
      "nteleportation.vip-4": 6
    },
    "Location": "-271.8792 26.54642 -50.49034",
    "Usable Out Of Building Blocked": false,
    "Allow Crafting": true,
    "Pay": 0,
    "Bypass": 0
  },
  "Bandit": {
    "Allow Cave": true,
    "Cooldown": 60,
    "Countdown": 30,
    "Daily Limit": 9999,
    "VIP Daily Limits": {
      "nteleportation.vip-0": 9999,
      "nteleportation.vip-1": 9999,
      "nteleportation.vip-2": 9999,
      "nteleportation.vip-3": 9999,
      "nteleportation.vip-4": 9999
    },
    "VIP Cooldowns": {
      "nteleportation.vip-0": 40,
      "nteleportation.vip-1": 30,
      "nteleportation.vip-2": 15,
      "nteleportation.vip-3": 10,
      "nteleportation.vip-4": 5
    },
    "VIP Countdowns": {
      "nteleportation.vip-0": 20,
      "nteleportation.vip-1": 15,
      "nteleportation.vip-2": 10,
      "nteleportation.vip-3": 8,
      "nteleportation.vip-4": 6
    },
    "Location": "631.1782 57.48172 12.29551",
    "Usable Out Of Building Blocked": false,
    "Allow Crafting": false,
    "Pay": 0,
    "Bypass": 0
  }
}

Just in case someone get in here with the same problem, viewing plugin's code I found this part:

if (CompoundTeleport == null)
{
if (outpostEnabled) AddCovalenceCommand("outpost", nameof(CommandOutpost));
if (banditEnabled) AddCovalenceCommand("bandit", nameof(CommandBandit));
}

So if you are using Compound Teleport plugin bandit and outpost command will not work.

Locked automatically