1
0
forked from mico/idle_moloch

Boss color change + random test was crying

This commit is contained in:
mic0 2024-11-01 11:54:39 +01:00
parent 030dc849c6
commit 8d4ec9f0c5
Signed by: mico
GPG Key ID: A3F8023524CF1C8D
2 changed files with 6 additions and 6 deletions

View File

@ -29,17 +29,17 @@
color: #9b215e; color: #9b215e;
} }
& > .boss3 { & > .boss3 {
color: #ebb638;
}
& > .boss4 {
color: #c6282e; color: #c6282e;
} }
& > .boss5 { & > .boss4 {
color: #d06b53; color: #d06b53;
} }
& > .boss6 { & > .boss5 {
color: #8f968f; color: #8f968f;
} }
& > .boss6 {
color: #ebb638;
}
} }
& small { & small {
opacity: 0.7; opacity: 0.7;

View File

@ -111,7 +111,7 @@ contract raid_geldTest is Test, Constants {
function test_22_random_range(uint256 min, uint256 max) public { function test_22_random_range(uint256 min, uint256 max) public {
vm.assume(max > min); vm.assume(max > min);
vm.assume(max - min < 100); vm.assume(max - min < 200);
vm.assume(max < type(uint256).max); vm.assume(max < type(uint256).max);
uint256 range = max - min + 1; uint256 range = max - min + 1;
bool[] memory seen = new bool[](range); bool[] memory seen = new bool[](range);