Trying to track down the cause of InventoryModal loading without a hero assigned.

This commit is contained in:
Nick Winter 2015-02-25 16:19:49 -08:00
parent b6d8ceafb0
commit c8c76e6b74

View file

@ -297,6 +297,13 @@ module.exports = class PlayHeroesModal extends ModalView
hero = @selectedHero?.get('original')
unless hero
console.error 'Somehow we tried to hide without having a hero selected yet...'
noty {
text: "Error: hero not loaded. If this keeps happening, please report the bug."
layout: 'topCenter'
timeout: 10000
type: 'error'
}
return
if @session
changed = @updateHeroConfig(@session, hero)