removed Auto Claim feature because of ban

This commit is contained in:
piair
2023-03-12 10:59:36 +01:00
parent 93600dd78a
commit cef0204868
3 changed files with 2 additions and 132 deletions

View File

@ -33,13 +33,6 @@ parser.add_argument(
action="store_true"
)
parser.add_argument(
"--claim",
help="show claim",
dest="claim",
action="store_true"
)
parser.add_argument(
"-l",
"--log",
@ -87,7 +80,7 @@ parser.add_argument(
)
args = parser.parse_args()
CLAIM = args.claim
CUSTOM_START = args.override
UNBAN = args.unban
LOG = args.log
@ -155,7 +148,6 @@ sql_database = config["SQL"]["database"]
# Other seetings
IPV6_CHECKED = config["OTHER"]["ipv6"]
CLAIM_AMAZON = config["OTHER"]["claim_amazon"] == "True"
g = open(MotPath, "r", encoding="utf-8")