Pokemon R/B: Removing Floats from NamedRange #3717
This commit is contained in:
parent
c0ef02d6fa
commit
203c8f4d89
|
@ -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,
|
||||
|
@ -960,4 +960,4 @@ pokemon_rb_options = {
|
|||
"ice_trap_weight": IceTrapWeight,
|
||||
"randomize_pokemon_palettes": RandomizePokemonPalettes,
|
||||
"death_link": DeathLink
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue