Cause: V12 brings a
new trust level, with a number of 3. "3" trust is basically a trust with yourself.
Why: In V12, you can no longer wand other people's bricks even under a full trust
Effect: These add-ons measured full trust by being equal to 2, which means trust-with-self is broken.
The side effect is that some add-ons were hard coded to check for trust level 2 instead of any trust level greater than 2.
Here are some manual directions if you don't trust me, otherwise, download below.
DuplicatorReplace
if(getTrustLevel(%obj, %col) == 2)
with
if(getTrustLevel(%obj, %col) >= 2)
FillcanReplace the "==" in these statements
if(gettrustlevel(%client,%target)==2)
if(gettrustlevel(%obj.client,%col)==2)
if(gettrustlevel(%client,%col.spawnbrick)==2)
to ">="
NamegunReplace
if(gettrustlevel(%obj,%col) == $TrustLevel::NameGun)
with
if(gettrustlevel(%obj,%col) >= $TrustLevel::NameGun)
JVS doorsReplace
if(getTrustLevel(%client,%obj) == 2)
with
if(getTrustLevel(%client,%obj) >= 2)
Tool_duplicator.zip Or
new duplicator(new duplicator incompatible with Block City)
Tool_fill_can.zipTool_BricknameGun.zipJVS_Doors.zipDuplicator officially fixed
JVS has been officially fixed.