LoafOrc / FacilityMeltdown

Maybe taking the appartus isn't such a great idea...
8 stars 6 forks source link

apparatus tooltip is missing?!? #46

Closed LoafOrc closed 1 month ago

LoafOrc commented 2 months ago

I'm trying to see what I can do on meltdown side but this is a compatibility issue with GeneralImprovements. More specifically this patch stops the tool tip from displaying if grabbable is false. Meltdown sets that value to false when there aren't enough players nearby:

if(closePlayers < actualNeededPlayers) {
  apparatus.customGrabTooltip = $"[ NEEDS {actualNeededPlayers} PEOPLE ]";
  apparatus.grabbable = false;
}

Because I also set grabbable to false, GeneralImprovements disregards the custom grab tooltip and just displays nothing.

LoafOrc commented 2 months ago

there's currently a hotfix in v2.6.8, where I just undo General Improvements patch but yeah thats not ideal

LoafOrc commented 1 month ago

okay 4 versions later and its fully fixed LMAO