Fix my stupid mistake

This commit is contained in:
Cara 2020-10-08 08:05:34 +10:30
parent 5e0ee1b897
commit 8ed5881512

View file

@ -20,6 +20,6 @@ namespace Dalamud.Game.Internal.Gui.Addon {
public short Y => this.addonStruct.Y;
public float Scale => this.addonStruct.Scale;
public bool Visible => (this.addonStruct.Flags & 0x20) == 1;
public bool Visible => (this.addonStruct.Flags & 0x20) == 0x20;
}
}