Renamed SoundF to SoundCore
This commit is contained in:
parent
26975a87c4
commit
cd616cce27
@ -34,7 +34,7 @@ import net.theprogrammersworld.herobrine.AI.cores.RandomExplosion;
|
|||||||
import net.theprogrammersworld.herobrine.AI.cores.RandomPosition;
|
import net.theprogrammersworld.herobrine.AI.cores.RandomPosition;
|
||||||
import net.theprogrammersworld.herobrine.AI.cores.RandomSound;
|
import net.theprogrammersworld.herobrine.AI.cores.RandomSound;
|
||||||
import net.theprogrammersworld.herobrine.AI.cores.Signs;
|
import net.theprogrammersworld.herobrine.AI.cores.Signs;
|
||||||
import net.theprogrammersworld.herobrine.AI.cores.SoundF;
|
import net.theprogrammersworld.herobrine.AI.cores.SoundCore;
|
||||||
import net.theprogrammersworld.herobrine.AI.cores.Temple;
|
import net.theprogrammersworld.herobrine.AI.cores.Temple;
|
||||||
import net.theprogrammersworld.herobrine.AI.cores.Totem;
|
import net.theprogrammersworld.herobrine.AI.cores.Totem;
|
||||||
import net.theprogrammersworld.herobrine.entity.MobType;
|
import net.theprogrammersworld.herobrine.entity.MobType;
|
||||||
@ -92,7 +92,7 @@ public class AICore {
|
|||||||
AllCores.add(new Pyramid());
|
AllCores.add(new Pyramid());
|
||||||
AllCores.add(new RandomPosition());
|
AllCores.add(new RandomPosition());
|
||||||
AllCores.add(new Signs());
|
AllCores.add(new Signs());
|
||||||
AllCores.add(new SoundF());
|
AllCores.add(new SoundCore());
|
||||||
AllCores.add(new Temple());
|
AllCores.add(new Temple());
|
||||||
AllCores.add(new Totem());
|
AllCores.add(new Totem());
|
||||||
AllCores.add(new Heads());
|
AllCores.add(new Heads());
|
||||||
|
@ -8,9 +8,9 @@ import net.theprogrammersworld.herobrine.Utils;
|
|||||||
import net.theprogrammersworld.herobrine.AI.Core;
|
import net.theprogrammersworld.herobrine.AI.Core;
|
||||||
import net.theprogrammersworld.herobrine.AI.CoreResult;
|
import net.theprogrammersworld.herobrine.AI.CoreResult;
|
||||||
|
|
||||||
public class SoundF extends Core{
|
public class SoundCore extends Core{
|
||||||
|
|
||||||
public SoundF(){
|
public SoundCore(){
|
||||||
super(CoreType.SOUNDF,AppearType.NORMAL, Herobrine.getPluginCore());
|
super(CoreType.SOUNDF,AppearType.NORMAL, Herobrine.getPluginCore());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user