I'm currently trying to make it so that you can only wear one wearable item at a time:
integers {
clothes_limit : integer "1" ;
inventory_limit : integer "20" ;
}
settings {
inventory_items_limit_var = inventory_limit
inventory_worn_items_limit_var = clothes_limit
}
The inventory limit works absolutely fine. The clothes limit doesn't - the game still allows the player to pick up and wear multiple wearable items at once.
There are only four wearable items to deal with, so I can work around it, but I'd like to understand what I'm doing wrong - any ideas?