Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Gameplay/Ace_Equip_Engine.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#==============================================================================
#
# ▼ Yanfly Engine Ace - Ace Equip Engine v1.06
# -- Last Updated: 2014.05.01
# -- Last Updated: 2020.06.10
# -- Level: Normal, Hard
# -- Requires: n/a
#
Expand All @@ -13,6 +13,7 @@
#==============================================================================
# ▼ Updates
# =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
# 2020.06.10 - Bug Fixed: Weird slot list when changing class/character with different slot.
# 2014.05.01 - Bug Fixed: Refresh Equip Item List when change slot.
# 2012.02.02 - Bug Fixed: Crash when changing classes to different equip slots.
# 2012.01.22 - Bug Fixed: <equip slot> notetags updated to factor in spaces.
Expand Down Expand Up @@ -434,7 +435,6 @@ def load_notetags_aee
case line.upcase
when /EQUIP TYPE[ ](\d+)/i, /EQUIP TYPE:[ ](\d+)/i
id = $1.to_i
@base_equip_slots.push(id) if [0,1,2,3,4].include?(id)
@base_equip_slots.push(id) if YEA::EQUIP::TYPES.include?(id)
when /WEAPON/i
@base_equip_slots.push(0)
Expand Down Expand Up @@ -1331,4 +1331,4 @@ def command_name2
#
# ▼ End of File
#
#==============================================================================
#==============================================================================