mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-05-16 11:02:44 -04:00
Fix limbo colors per PR #17
Closing the rest of that PR as I have another plan for how to do daily dollah
This commit is contained in:
@@ -89,7 +89,7 @@ public class LimboCommand : ICommand
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (limboNumber < casinoNumbers[1] / 2) colorToUse = settings[BuiltIn.Keys.KiwiFarmsRedColor].Value!; //use red for the number if you're not close
|
if (limboNumber / 2 > casinoNumbers[1]) colorToUse = settings[BuiltIn.Keys.KiwiFarmsRedColor].Value!; //use red for the number if you're not close
|
||||||
else if (limboNumber *3 / 4 > casinoNumbers[1])
|
else if (limboNumber *3 / 4 > casinoNumbers[1])
|
||||||
colorToUse = "yellow"; //use yellow for the number if you're pretty close
|
colorToUse = "yellow"; //use yellow for the number if you're pretty close
|
||||||
else colorToUse = "orange"; //use orange for mid range guess
|
else colorToUse = "orange"; //use orange for mid range guess
|
||||||
|
|||||||
Reference in New Issue
Block a user