Skip to content

Commit

Permalink
Pokemon R/B: Removing Floats from NamedRange ArchipelagoMW#3717
Browse files Browse the repository at this point in the history
  • Loading branch information
Exempt-Medic authored and agilbert1412 committed Aug 24, 2024
1 parent f287faa commit 1e932e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions worlds/pokemon_rb/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,10 +418,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 Expand Up @@ -960,4 +960,4 @@ class RandomizePokemonPalettes(Choice):
"ice_trap_weight": IceTrapWeight,
"randomize_pokemon_palettes": RandomizePokemonPalettes,
"death_link": DeathLink
}
}

0 comments on commit 1e932e6

Please sign in to comment.