Block 5zig mods

How to block 5zig mods

You can easily block them just opening the file clients-config.yml and adding them to the list like that:

    5zig:
      enabled-check: true
      description: "5zig"
      brands:
        enabled-check: true
        list:
          5zig: true
      channels:
        enabled-check: true
        list:
          5zig_Set: true
          "the5zigmod:5zig_set": true
      forge-mods:
        enabled-check: true
        list:
          5zig: true
      5zig-mods:
        block: true
        list: #             <-------------------- HERE
          PotionEffects: true
          PotionIndicator: true
          Armor: true
          Saturation: true
          EntityHealth: true
          AutoReconnect: true
          # ....

This allows you to avoid blocking the client completely but block only the mods. This turns the client into a normal Minecraft.

If you want to disable kicking but disable only the mods you have to disable the channels and brands blocking like that:

5zig:
  enabled-check: true
  description: "5zig"
  brands:
    enabled-check: true
    list:
      5zig: false # <--- here false
  channels:
    enabled-check: true
    list:
      5zig_Set: false # <--- here false
      "the5zigmod:5zig_set": false # <--- here false
  5zig-mods:
    block: true # <--- here true
    # ....

Last updated