Skip to content

Commit c5d3d1a

Browse files
authored
refactor: be less strict in whatif (#946)
1 parent 08a50c6 commit c5d3d1a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bathbot/src/embeds/osu/whatif.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,9 @@ impl WhatIfEmbed {
112112
d.push('.');
113113
}
114114

115-
if pp > max_pp * 2.0 {
115+
// Arbitrary value 30, surely everyone can get that without
116+
// being banned :p
117+
if pp > max_pp * 2.0 && pp > 30.0 {
116118
d.push_str("\nThey'd probably also get banned :^)");
117119
}
118120

0 commit comments

Comments
 (0)