Skip to content

Commit

Permalink
- Fix whole division
Browse files Browse the repository at this point in the history
  • Loading branch information
agilbert1412 committed Jun 19, 2024
1 parent e9bf114 commit cfa5e14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions worlds/pokemon_rb/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,10 +420,10 @@ class ExpModifier(NamedRange):
"""Modifier for EXP gained. When specifying a number, exp is multiplied by this amount and divided by 16."""
display_name = "Exp Modifier"
default = 16
range_start = default / 4
range_start = default // 4
range_end = 255
special_range_names = {
"half": default / 2,
"half": default // 2,
"normal": default,
"double": default * 2,
"triple": default * 3,
Expand Down

0 comments on commit cfa5e14

Please sign in to comment.