Heeeyyy.... looks like it wasnt even that because I changed this part of the code like you said:
And I'm still not seeing my items. So yeah... Something else is stopping them from showing there faces?
I know, I know... I'm tiresome....
Code:
#--------------------------------------------------------------------------
# * Refresh
#--------------------------------------------------------------------------
def refresh
# Add Special Item flag from Scene
special = $scene.special
# Clear the screen
if self.contents != nil
self.contents.dispose
self.contents = nil
end
self.contents.font.name = $fontname
@data = []
# Add item
for i in 1...$data_items.size
if $game_party.item_number(i) > 0
if Special_Items::ITEMS.include?(i) == special
@data.push($data_items[i])
end
end
end
# Also add weapons and items if outside of battle
I know, I know... I'm tiresome....