Galimordant
Verified Member
Hi Everyone.
I encountered a problem when trying to program my first addon ability called "Firedome". Everything went well until I created my manager class I wrote :
package com.projectkorra.ability;
import com.projectkorra.projectkorra.firebending.Firedome;
public class FiredomeManager implements Runnable {
public void run(){
Firedome.progressAll();
}
}
It gives me an error at "progressAll". I already of course created the "progressAll" method in my "Firedome" class. But when I hover my mouse over the error, it seems to say that I have to put some kind of argument in it but I just have no idea about what to do. Sorry if this may seems obvious for some of you but I'm really a newbie in these things. So if someone would be able to help me. Oh and I'm not really sure if this post is supposed to be in this section so excuse me if it wasn't.
Galimordant
I encountered a problem when trying to program my first addon ability called "Firedome". Everything went well until I created my manager class I wrote :
package com.projectkorra.ability;
import com.projectkorra.projectkorra.firebending.Firedome;
public class FiredomeManager implements Runnable {
public void run(){
Firedome.progressAll();
}
}
It gives me an error at "progressAll". I already of course created the "progressAll" method in my "Firedome" class. But when I hover my mouse over the error, it seems to say that I have to put some kind of argument in it but I just have no idea about what to do. Sorry if this may seems obvious for some of you but I'm really a newbie in these things. So if someone would be able to help me. Oh and I'm not really sure if this post is supposed to be in this section so excuse me if it wasn't.
Galimordant