- Joined
- Mar 17, 2012
- Messages
- 1,149
- Reaction score
- 386
- First Language
- Sarcasm
- Primarily Uses
In my script, change the following lines:
to this:
Then place my script UNDER the victor module. That ~should~ fix that issue.
Code:
def self.character(file) ## Checks if the file is a composite.
return cp_cm_character(file) unless CP::COMPOSITE::NAMES.include?(file)
create_composite(file, "Graphics/Characters/")
load_bitmap("Graphics/Characters/", file)
end
Code:
def self.character(file, hue) ## Checks if the file is a composite.
return cp_cm_character(file, hue) unless CP::COMPOSITE::NAMES.include?(file)
create_composite(file, "Graphics/Characters/")
load_bitmap("Graphics/Characters/", file)
end
Last edited by a moderator: