(String aSound, int aTimeUntilNextSound, float aVolume)
| 2694 | public static List<SoundWithLocation> sSoundsToPlay = new ArrayListNoNulls<>(); |
| 2695 | |
| 2696 | public static boolean play(String aSound, int aTimeUntilNextSound, float aVolume) { |
| 2697 | if (!CODE_CLIENT || cpw.mods.fml.common.FMLCommonHandler.instance().getEffectiveSide().isServer()) return F; |
| 2698 | return play(aSound, aTimeUntilNextSound, aVolume, GT_API.api_proxy.getThePlayer()); |
| 2699 | } |
| 2700 | |
| 2701 | public static boolean play(String aSound, int aTimeUntilNextSound, float aVolume, Entity aEntity) { |
| 2702 | if (!CODE_CLIENT || aEntity == null || cpw.mods.fml.common.FMLCommonHandler.instance().getEffectiveSide().isServer()) return F; |
no test coverage detected