1
0
mirror of https://gitlab.com/Deukhoofd/BattleSim.git synced 2025-10-29 10:40:04 +00:00

Fixed issue where popover wasn't appearing when first pokemon didn't have a mega stone

This commit is contained in:
Deukhoofd
2016-05-22 17:34:31 +02:00
parent 2e1bb22aab
commit b7230033bb
4 changed files with 10 additions and 0 deletions

View File

@@ -248,6 +248,7 @@ class @Pokemon extends Backbone.Model
if @get('species') == "Rayquaza" and "Dragon Ascent" in @get('moves')
return true
item = @getItem()
return false if typeof item == "undefined"
return false if item.type != 'megastone'
[ species, forme ] = item.mega
return false if @get('species') != species || @get('forme') != 'default'