From 0a64113fc5d99278afd06e246416fb4894a5e143 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 28 Jun 2017 21:51:04 -0400 Subject: [PATCH] I MADE AN OOPSIE POOPSIE --- ShiftOS.WinForms/Viruses/CPLeach.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ShiftOS.WinForms/Viruses/CPLeach.cs b/ShiftOS.WinForms/Viruses/CPLeach.cs index 0d82187..d9780ee 100644 --- a/ShiftOS.WinForms/Viruses/CPLeach.cs +++ b/ShiftOS.WinForms/Viruses/CPLeach.cs @@ -18,7 +18,7 @@ namespace ShiftOS.WinForms.Viruses Timer.Tick += (o, a) => { ulong codepointDecrease = (ulong)threatlevel * 4; - if (SaveSystem.CurrentSave.Codepoints >= codepointDecrease) + if (SaveSystem.CurrentSave.Codepoints <= codepointDecrease) SaveSystem.CurrentSave.Codepoints -= codepointDecrease; else SaveSystem.CurrentSave.Codepoints = 0;