Yao Chung Hu
Yao Chung Hu
`"[\"stop\"]"` is the correct format. I will update the wiki as soon as I can, I've just been busy with other stuff. Example: ```json { "schemaVersion": 1, "commandMode": "COMMAND_CUSTOM", "command":...
> I'm running into various other issues with debugging my command alias (such as the first child command's action being run even when the second child command is being called)...
It appears that the server resource pack is modifying core shaders. Unfortunately, I don't think there is anything I can do about it. You might want to consider trying alternative...
You can temporarily add `render.block.entity=false` at `.minecraft/config/sodium-extra.properties` to disable this. It also disables beacon beam, piston and enchanting table toggles. Caused by https://github.com/FlashyReese/sodium-extra-fabric/blob/cdb15d75cdca99813b17b4e64c47000940009f8b/src/main/java/me/flashyreese/mods/sodiumextra/mixin/render/block/entity/MixinBeaconBlockEntityRenderer.java#L36
https://github.com/FlashyReese/sodium-extra-fabric/issues/366#issuecomment-1804903528
Is this the case for previous versions? Unfortunately, I don't own a mac device to debug this. I would suggest trying [ResolutionControl+](https://www.curseforge.com/minecraft/mc-mods/resolutioncontrol), as I can not reliably debug this issue.
I assume this was cause by the gui and text rendering mojang shipped with 1.20. It seems to also be halving the resolution on text rendering.
I don't believe this issue can be resolved on Sodium Extra's end because we are currently utilizing Sodium's vertex writer, which significantly improves GUI rendering speed. There are a few...
You can add `mixin.sky=false` to `.minecraft/config/sodium-extra.properties` to temporarily disable sky toggle feature. I can't guarantee compatibility for mods that also modify the sky.
@jmb05 If needed you can do so with your mod by adding this to your `fabric.mod.json` until a viable solution is found ```json "custom": { "sodium-extra:options": { "mixin.sun_moon": false }...