Package org.spoutcraft.client.packet

Examples of org.spoutcraft.client.packet.PacketMusicChange


              if (player instanceof EntityClientPlayerMP) {
                if (waitingSound == null) {
                  Music music = Music.getMusicFromName(var1.soundName);
                  if (music != null) {
                    waitingSound = var1;
                    SpoutClient.getInstance().getPacketManager().sendSpoutPacket(new PacketMusicChange(music.getId(), (int)options.musicVolume * 100));
                    return;
                  }
                } else if (allowed) {
                  var1 = waitingSound;
                  waitingSound = null;
View Full Code Here

TOP

Related Classes of org.spoutcraft.client.packet.PacketMusicChange

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.