Attempting merge fix

This commit is contained in:
RangerMauve 2013-06-30 14:00:56 -04:00
parent 9fc9e01c3b
commit 61dcce06dd
2 changed files with 31 additions and 33 deletions

View File

@ -63,5 +63,35 @@ public final class DiscoSheep extends JavaPlugin {
for (int i = 0; i < sheepArray.size(); i++) {
//sheepArray.get(i) something something
}
}
}
public void playSounds(){
// TODO: generate list of players to send sounds to
}
public void playSounds(Player player){
//TODO: Add sound playing here
}
// Called after discosheep is stopped
public void cleanUp(){
removeAllSheep();
}
void scheduleUpdate(){
updater.runTaskLater(updater,frequency);
}
public void startDisco(int frequency, int duration){
updater.start(frequency, duration);
}
public void startDisco(){
this.startDisco();
}
public void stopDisco(){
updater.stop();
}
}

View File

@ -33,35 +33,3 @@ public class DiscoUpdater extends BukkitRunnable{
}
}
}
/*
public void playSounds(){
// TODO: generate list of players to send sounds to
}
public void playSounds(Player player){
//TODO: Add sound playing here
}
// Called after discosheep is stopped
public void cleanUp(){
removeAllSheep();
}
void scheduleUpdate(){
updater.runTaskLater(updater,frequency);
}
public void startDisco(int frequency, int duration){
updater.start(frequency, duration);
}
public void startDisco(){
this.startDisco();
}
public void stopDisco(){
updater.stop();
}
*/