| 3 | import net.minecraftforge.common.config.Config; |
| 4 | |
| 5 | @Config(modid = Client.ID, name = Client.NAME, category = "client") |
| 6 | public class ClientConfig { |
| 7 | |
| 8 | @Config.Name("Blacklist Bypass") |
| 9 | @Config.Comment("Bypass Mojang's server blacklist.") |
| 10 | public static boolean blacklistBypass = true; |
| 11 | |
| 12 | @Config.Name("Proxy") |
| 13 | @Config.Comment("Proxy all your network traffic.") |
| 14 | public static boolean proxy = false; |
| 15 | |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected