mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-07 13:15:01 +00:00
Added 1.5x screen size option, fixed 2**32 being 0, tidied up some code
This commit is contained in:
@@ -299,10 +299,7 @@ module PokemonDebugMixin
|
||||
end
|
||||
end
|
||||
when 2 # Randomise pID
|
||||
pkmn.personalID = rand(256)
|
||||
pkmn.personalID |= rand(256)<<8
|
||||
pkmn.personalID |= rand(256)<<16
|
||||
pkmn.personalID |= rand(256)<<24
|
||||
pkmn.personalID = rand(2**16) | rand(2**16) << 16
|
||||
pkmn.calcStats
|
||||
pbRefreshSingle(pkmnid)
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user