diff options
| author | AShifter <[email protected]> | 2017-03-11 09:24:15 -0700 |
|---|---|---|
| committer | AShifter <[email protected]> | 2017-03-11 09:24:15 -0700 |
| commit | 5a8cb0cdf76d65e096bd9aeda6ee9c6246a31134 (patch) | |
| tree | 3e6c43952ef7e665b80033e451814dc8b0cd5bce /ShiftOS.WinForms/Applications/ShiftLotto.cs | |
| parent | d15965e442a1d29424f2e6f315dae3281154f944 (diff) | |
| download | shiftos_thereturn-5a8cb0cdf76d65e096bd9aeda6ee9c6246a31134.tar.gz shiftos_thereturn-5a8cb0cdf76d65e096bd9aeda6ee9c6246a31134.tar.bz2 shiftos_thereturn-5a8cb0cdf76d65e096bd9aeda6ee9c6246a31134.zip | |
I don't think Michael liked the ShiftLotto limits
so i fixed it - 1 billion limit combined
Diffstat (limited to 'ShiftOS.WinForms/Applications/ShiftLotto.cs')
| -rw-r--r-- | ShiftOS.WinForms/Applications/ShiftLotto.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ShiftOS.WinForms/Applications/ShiftLotto.cs b/ShiftOS.WinForms/Applications/ShiftLotto.cs index 7acba3e..4b1c983 100644 --- a/ShiftOS.WinForms/Applications/ShiftLotto.cs +++ b/ShiftOS.WinForms/Applications/ShiftLotto.cs @@ -81,7 +81,7 @@ namespace ShiftOS.WinForms.Applications int codePoints = Convert.ToInt32(Math.Round(cpUpDown.Value, 0)); int difficulty = Convert.ToInt32(Math.Round(difUpDown.Value, 0)); - if (SaveSystem.CurrentSave.Codepoints <= 1) + if (SaveSystem.CurrentSave.Codepoints <= 9) { Infobox.Show("Not enough Codepoints", "You do not have enough Codepoints to use ShiftLotto!"); } @@ -121,6 +121,8 @@ namespace ShiftOS.WinForms.Applications // Remove Codepoints SaveSystem.TransferCodepointsToVoid(jackpot); + + // Infobox Infobox.Show("YOU FAILED!", "Sorry! " + jackpot.ToString() + " CP has been removed from your account."); } |
