Renamed SoundF to SoundCore

This commit is contained in:
David Berdik 2021-07-07 18:08:42 -04:00
parent 26975a87c4
commit cd616cce27
2 changed files with 4 additions and 4 deletions

View File

@ -34,7 +34,7 @@ import net.theprogrammersworld.herobrine.AI.cores.RandomExplosion;
import net.theprogrammersworld.herobrine.AI.cores.RandomPosition;
import net.theprogrammersworld.herobrine.AI.cores.RandomSound;
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.Totem;
import net.theprogrammersworld.herobrine.entity.MobType;
@ -92,7 +92,7 @@ public class AICore {
AllCores.add(new Pyramid());
AllCores.add(new RandomPosition());
AllCores.add(new Signs());
AllCores.add(new SoundF());
AllCores.add(new SoundCore());
AllCores.add(new Temple());
AllCores.add(new Totem());
AllCores.add(new Heads());

View File

@ -8,9 +8,9 @@ import net.theprogrammersworld.herobrine.Utils;
import net.theprogrammersworld.herobrine.AI.Core;
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());
}