Items going to Reclaim Terminal despite Reclaim Fraction 0

Hi,

Trying to make it so that when someone dies, all of their loot is in their backpacks where their body is, but it seems that half od it still spaws at the Reclaiming stations at monuments, despirte me having the Reclaim Fraction set to 0. Is this because my server is set to Softcore? And if so, is there any way around it? Below is my json...

{
  "Backpack size": {
    "Default size": 48,
    "Max size per page": 48,
    "Enable legacy backpacks.use.1-8 row permissions": false,
    "Permission sizes": [
      6,
      12,
      18,
      24,
      30,
      36,
      42,
      48,
      96,
      144
    ],
    "Dynamic Size (EXPERIMENTAL)": {
      "Enabled": false,
      "Size profiles": [
        {
          "Permission suffix": "6-48",
          "Initial size": 48,
          "Max size": 48
        },
        {
          "Permission suffix": "6-96",
          "Initial size": 48,
          "Max size": 96
        },
        {
          "Permission suffix": "6-144",
          "Initial size": 48,
          "Max size": 144
        }
      ]
    }
  },
  "Drop on Death (true/false)": true,
  "Erase on Death (true/false)": false,
  "Minimum Despawn Time (Seconds)": 600,
  "GUI Button": {
    "Enabled": true,
    "Enabled by default (for players with permission)": true,
    "Skin Id": 3050418770,
    "Image": "",
    "Background Color": "0.969 0.922 0.882 0.035",
    "GUI Button Position": {
      "Anchors Min": "0.5 0.0",
      "Anchors Max": "0.5 0.0",
      "Offsets Min": "185 18",
      "Offsets Max": "245 78"
    }
  },
  "Container UI": {
    "Show page buttons on container bar": false,
    "Max page buttons to show": 8
  },
  "Softcore": {
    "Reclaim Fraction": 0
  },
  "Item restrictions": {
    "Enabled": false,
    "Enable legacy noblacklist permission": false,
    "Feedback effect": "assets/prefabs/locks/keypad/effects/lock.code.denied.prefab",
    "Default ruleset": {
      "Allowed item categories": [
        "All"
      ],
      "Disallowed item categories": [],
      "Allowed item short names": [],
      "Disallowed item short names": [],
      "Allowed skin IDs": [],
      "Disallowed skin IDs": []
    },
    "Rulesets by permission": [
      {
        "Name": "allowall",
        "Allowed item categories": [
          "All"
        ],
        "Disallowed item categories": [],
        "Allowed item short names": [],
        "Disallowed item short names": [],
        "Allowed skin IDs": [],
        "Disallowed skin IDs": []
      }
    ]
  },
  "Clear on wipe": {
    "Enabled": true,
    "Enable legacy keeponwipe permission": false,
    "Default ruleset": {
      "Max slots to keep": 0,
      "Allowed item categories": [],
      "Disallowed item categories": [],
      "Allowed item short names": [],
      "Disallowed item short names": [],
      "Allowed skin IDs": [],
      "Disallowed skin IDs": []
    },
    "Rulesets by permission": [
      {
        "Name": "all",
        "Max slots to keep": -1,
        "Allowed item categories": [
          "All"
        ],
        "Disallowed item categories": [],
        "Allowed item short names": [],
        "Disallowed item short names": [],
        "Allowed skin IDs": [],
        "Disallowed skin IDs": []
      }
    ]
  }
}​

Setting "Reclaim fraction" to 0, as you have done, should resolve this. That is, when the player dies, all backpack contents should be placed in the backpack that drops with the player corpse; no items from the backpack itself should go to the reclaim terminal, but items in the player inventory may still go to the reclaim terminal, according to the gamemodesoftcore.reclaim_fraction_* convars.

Either (A) you are seeing player inventory items go to the reclaim terminal, which is not controlled by the plugin, or (B) the plugin isn't picking up the config change; maybe the plugin wasn't reloaded, or maybe you didn't upload the edited config file to your server, or maybe there's a syntax error in the JSON (doesn't look like it) which would cause the plugin to use the default configuration (which has Reclaim fraction set to 0.5).