v3.3.0: slightly reduced the spyglasses item chance

This commit is contained in:
Evan Debenham
2025-11-12 14:25:05 -05:00
parent 77c84f4a63
commit 6bd2b4dff6

View File

@@ -57,7 +57,7 @@ public class CrackedSpyglass extends Trinket{
if (level <= -1){
return 0;
} else {
return 0.4f*(level+1);
return 0.375f*(level+1);
}
}