mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-07 13:15:01 +00:00
Fixed missing method for PokeBattle_FakeBattler
This commit is contained in:
@@ -100,5 +100,5 @@ end
|
|||||||
|
|
||||||
# Well done for finding this place.
|
# Well done for finding this place.
|
||||||
# DO NOT EDIT THESE
|
# DO NOT EDIT THESE
|
||||||
ESSENTIALS_VERSION = "18"
|
ESSENTIALS_VERSION = "18.dev"
|
||||||
ERROR_TEXT = ""
|
ERROR_TEXT = ""
|
||||||
|
|||||||
@@ -25,6 +25,10 @@ class PokeBattle_FakeBattler
|
|||||||
def shiny?; return @pokemon.shiny?; end
|
def shiny?; return @pokemon.shiny?; end
|
||||||
alias isShiny? shiny?
|
alias isShiny? shiny?
|
||||||
|
|
||||||
|
def isSpecies?(checK_species)
|
||||||
|
return @pokemon && @pokemon.isSpecies?(checK_species)
|
||||||
|
end
|
||||||
|
|
||||||
def fainted?; return false; end
|
def fainted?; return false; end
|
||||||
alias isFainted? fainted?
|
alias isFainted? fainted?
|
||||||
def shadowPokemon?; return false; end
|
def shadowPokemon?; return false; end
|
||||||
|
|||||||
Reference in New Issue
Block a user