Fix build

This commit is contained in:
Cinder Biscuits
2017-06-04 12:47:05 -05:00
parent a160ecffe9
commit 87614e9d61

View File

@@ -569,7 +569,7 @@ namespace OpenMetaverse
/// </summary>
public bool LandmarkVisited
{
get => (Flags & 1) != 0;
get { return (Flags & 1) != 0; }
set
{
if (value) Flags |= 1;