mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Fix #1006
This commit is contained in:
parent
a018304f99
commit
06ed5c0a45
2 changed files with 22 additions and 8 deletions
|
|
@ -157,6 +157,7 @@ namespace MinecraftClient
|
|||
|
||||
//Auto Fishing
|
||||
public static bool AutoFishing_Enabled = false;
|
||||
public static bool AutoFishing_Antidespawn = false;
|
||||
|
||||
//Auto Eating
|
||||
public static bool AutoEat_Enabled = false;
|
||||
|
|
@ -477,6 +478,7 @@ namespace MinecraftClient
|
|||
switch (argName.ToLower())
|
||||
{
|
||||
case "enabled": AutoFishing_Enabled = str2bool(argValue); break;
|
||||
case "antidespawn": AutoFishing_Antidespawn = str2bool(argValue); break;
|
||||
}
|
||||
break;
|
||||
|
||||
|
|
@ -689,6 +691,7 @@ namespace MinecraftClient
|
|||
+ "[AutoFishing]\r\n"
|
||||
+ "# Entity Handling NEED to be enabled first\r\n"
|
||||
+ "enabled=false\r\n"
|
||||
+ "antidespawn=false\r\n"
|
||||
+ "\r\n"
|
||||
+ "[AutoEat]\r\n"
|
||||
+ "# Inventory Handling NEED to be enabled first\r\n"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue