- Joined
- Jan 26, 2014
- Messages
- 1,281
- Reaction score
- 106
- First Language
- Irish
- Primarily Uses
- N/A
So I was trying to retain two methods from Game_Battler to Game_Actor, which it says that it has an error called Stack Error too deep. As far as I understand, what I was doing was conventionally correct.
Example:
Does anyone know the explanation why this gives an error?
Example:
Code:
class Game_Actor < Game_Battler
def add_state(state_id)
super(state_id)
end
def remove_state(state_id)
super(state_id)
end
end
Does anyone know the explanation why this gives an error?
Last edited by a moderator:

