Bug [SMOL] Mafia does not track furnishings at the campsite dwelling in smol

stealthhunter

New member
The situation:
i am running smol (which is no longer standard restricted) and have discovered that modtrace rests is not listing the forest canopy bed. This could be because the campground is not available as usual. I am using my Chateau Mantegna for resting.
/goto campground.php?action=inspectdwelling in kol will show the dwelling and the forest canopy bed but mafia does not acknowledge it.

Same goes for meat butler (and then probably also meat maid and others) and modtrace Adventures.

My mafia build: r27820 (latest).

Steps to reproduce:
1. Ascend into the smol path
2. Pull/get a forest canopy bed/meat butler and use it.
3. Do a modtrace Adventures or a modtrace rests and check if the respective item is listed.

I would expect campground.php?action=inspectdwelling to trigger the parsing. Maybe there is something different in smol so parsing does not work correctly?
 

Ryo_Sangnoir

Developer
Staff member
Yeah, I explicitly disabled dwelling parsing in small:

Code:
    if (KoLCharacter.inSmallcore()) {
      // hard to parse
      return;
    }
 
Top