Fix wrong status after reedeming the key

This commit is contained in:
JustArchi 2015-10-28 20:48:22 +01:00
parent 33b42fb76c
commit 03885babf6

View file

@ -30,8 +30,8 @@ namespace ArchiSteamFarm {
internal sealed class PurchaseResponseCallback : CallbackMsg {
internal enum EPurchaseResult {
Unknown = 0,
OK = 1,
Unknown = -1,
OK = 0,
AlreadyOwned = 9,
InvalidKey = 14,
DuplicatedKey = 15,