Jump to content

Swapping out Clever Disguise with another one clears merm loyalty


_zwb
  • Fixed

Because when the old hat is unequipped its callback removes followers with the "merm" tag.

if owner.components.leader then
	owner.components.leader:RemoveFollowersByTag("merm")
end

It can be fixed with:

    if owner.components.leader then
        owner:DoTaskInTime(0, function() -- in case of equipment swapping 
            if not owner.components.inventory:EquipHasTag("mermdisguise") then
                owner.components.leader:RemoveFollowersByTag("merm")
            end
        end)
    end

 


Steps to Reproduce

Swap clever disguise with another clever disguise

  • Haha 1



User Feedback


A developer has marked this issue as fixed. This means that the issue has been addressed in the current development build and will likely be in the next update.


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
  • Create New...