mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-04 17:19:47 -04:00
Properly showing the back of wizards' robes.
This commit is contained in:
parent
768ef7818c
commit
63b24b9bf1
3 changed files with 7 additions and 1 deletions
app
styles/play/menu
views
|
@ -562,6 +562,9 @@ $itemSlotGridHeight: 51px
|
|||
&.torso
|
||||
z-index: 14
|
||||
|
||||
&.male-back, &.female-back
|
||||
z-index: 11
|
||||
|
||||
&.gloves
|
||||
z-index: 15
|
||||
|
||||
|
|
|
@ -110,6 +110,7 @@ defaultTasks =
|
|||
Item: commonTasks.concat purchasableTasks.concat [
|
||||
'Set the hero class if class-specific.'
|
||||
'Upload Paper Doll Images.'
|
||||
'Configure item stats and abilities.'
|
||||
]
|
||||
Missile: commonTasks.concat animatedThangTypeTasks.concat [
|
||||
'Make sure there is a launch sound trigger.'
|
||||
|
|
|
@ -619,7 +619,7 @@ module.exports = class InventoryModal extends ModalView
|
|||
item = _.find @items.models, (item) -> item.get('original') is original
|
||||
continue unless dollImages = item?.get('dollImages')
|
||||
didAdd = @addDollImage slot, dollImages, heroClass, gender
|
||||
slotsWithImages.push slot if didAdd
|
||||
slotsWithImages.push slot if didAdd if item.get('original') isnt '54ea39342b7506e891ca70f2' # Circlet of the Magi needs hair under it
|
||||
@$el.find('#hero-image-hair').toggle not ('head' in slotsWithImages)
|
||||
@$el.find('#hero-image-thumb').toggle not ('gloves' in slotsWithImages)
|
||||
|
||||
|
@ -637,6 +637,8 @@ module.exports = class InventoryModal extends ModalView
|
|||
imageKeys = ["#{gender}#{heroClass}", "#{gender}#{heroClass}Thumb"]
|
||||
else
|
||||
imageKeys = ["#{gender}", "#{gender}Thumb"]
|
||||
else if heroClass is 'Wizard' and slot is 'torso'
|
||||
imageKeys = [gender, "#{gender}Back"]
|
||||
else
|
||||
imageKeys = [gender]
|
||||
for imageKey in imageKeys
|
||||
|
|
Loading…
Add table
Reference in a new issue