alias create_below_pictures create_pictures
def create_pictures(*args)
create_below_pictures(*args)
for pic_id in FIRST_BELOW_PICTURE_ID..LAST_BELOW_PICTURE_ID
@picture_sprites[pic_id - 1].dispose
@picture_sprites[pic_id - 1] = Sprite_Picture.new(@viewport1,
$game_map.screen.pictures[pic_id])
end
end
end