Hello
I have the issue that I all my medical crate (crate_normal_2_medical) only spawn 1 item.
Even though I have the following settings:
"crate_normal_2_medical": {
"enabled": true,
"lootTable": "MedicalCrate",
"maxItems": 2,
"minItems": 1,
"gunsWithAmmo": false,
"noGuns": false,
"MaxBps": 1,
"WaterPreFillPercent": 20,
"ClearContainerFirst": true
},
Now I have a MedicalCrate.json in my oxide/data/CustomLoot
I tried different min and max numbers as well but nothing works.
The only Items with a probability in there look like this:
"Medical": {
"antiradpills": {
"probability": 0,
"minStack": 1,
"maxStack": 1
},
"bandage": {
"probability": 3,
"minStack": 1,
"maxStack": 3
},
"blood": {
"probability": 0,
"minStack": 1,
"maxStack": 1
},
"largemedkit": {
"probability": 5,
"minStack": 1,
"maxStack": 1,
"blueprintChancePercent": 1
},
"syringe.medical": {
"probability": 6,
"minStack": 1,
"maxStack": 6,
"blueprintChancePercent": 1
}
},
All categories have the same probability of 1 in the same file.
It is funny, that all my settings for all the other containers work and I do nothing different. It is only the Medical crate that does this.
Can it be that there is an issue with medical crates and it has nothing to do with my settings?