Skip to content

Commit

Permalink
[fix] DeckSize enumeration for command "Deck Size Selector"
Browse files Browse the repository at this point in the history
  • Loading branch information
TakTraum committed Aug 2, 2016
1 parent 40d4a73 commit 4de89aa
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cmdr/cmdr.TsiLib/Enums/DeckSize.cs
Expand Up @@ -2,11 +2,11 @@
namespace cmdr.TsiLib.Enums
{
public enum DeckSize
{
Micro = -1,
Small = 0,
Essential = 1,
Full = 2,
Advanced = 3
{
Micro = 0,
Small = 1,
Essential = 2,
Full = 3,
Advanced = 4
}
}

0 comments on commit 4de89aa

Please sign in to comment.