Error Waiting to Happen

Changed the strange `true` to `value`.
This commit is contained in:
Deantwo 2018-06-25 15:05:20 +02:00 committed by GitHub
parent 9b92917925
commit c855c584c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,11 +12,11 @@ namespace AsterNET.Manager.Event
public bool Reconnect
{
get { return this.reconnect; }
set { this.reconnect = true; }
set { this.reconnect = value; }
}
public ConnectionStateEvent(ManagerConnection source)
: base(source)
{ }
}
}
}