Plugin broken with Apr 25 update

Hello, plugin fails to compile with latest update.

Error while compiling TCManagerOrig: There is no argument given that corresponds to the required parameter 'doors' of 'BuildingPrivlidge.CalculateUpkeepCostFraction(bool)' | Line: 178, Pos: 77

The issue seems to be specifically in the /upkeep command
Extremely dirty "fix", if you comment out line 113 to line 189 to essentially disable this chat command, the plugin then loads
I don't have any knowledge of C# at all, so I'm sure someone can do better :)

slightly less dirty fix:

Β 

i added "true" to the call on line 178

block.CalculateUpkeepCostAmounts(itemAmounts, privilege.CalculateUpkeepCostFraction());

becomesΒ 

block.CalculateUpkeepCostAmounts(itemAmounts, privilege.CalculateUpkeepCostFraction(true));


I have no idea what I am setting to true, but it compiles, and that command works.. so .. 🀷

It did say bool :) so that checks out - thank you that is much less dirty 😁