cat_jam

cat_jam

4M Downloads

Mod breaks Simple Voice Chat

henkelmax opened this issue ยท 2 comments

commented

Your ALSpeakerBaseMixin will create a null pointer exception, as category is @Nullable:

@Inject(method = "play([SFLnet/minecraft/util/math/Vec3d;Ljava/lang/String;F)V", at = @At("HEAD"))
public void detectCustomDiscPlayback(short[] data, float volume, Vec3d position, String category, float maxDistance, CallbackInfo ci) {
if (category.equals(AudioPlayer.DISC_SOUND_CATEGORY)) {
AudioPlayer.pingPos(position);
}
}

https://github.com/henkelmax/simple-voice-chat/blob/acf3380d7b02775d3c29dd39c5977801b1a64478/common/src/main/java/de/maxhenkel/voicechat/voice/client/speaker/ALSpeakerBase.java#L79

It is strongly discouraged to directly mixin into the voice chat mod, as this will break if the mods code changes.
This should be done with the API, as it does not break across mod versions.

EDIT: This event should work: https://voicechat.modrepo.de/de/maxhenkel/voicechat/api/events/OpenALSoundEvent.Pre.html

commented

I apologise for this, I've removed the offending versions for download and will fix this as soon as I can.

commented

I have released a new mod version with this fix.