Ejemplo n.º 1
0
 /** Stop all synths other than personal. */
 public void stopAllOutsideAudio() {
   Collection<GeoSynth> places = owner.getAuraManager().getDestinations().values();
   for (GeoSynth place : places) {
     if (place.play == true) {
       stopAudio(place.index);
       place.play = false;
     }
   }
 }