mirror of
https://github.com/chev2/tf2-voice-ban-bots.git
synced 2025-10-30 08:12:33 +00:00
Update tf2 bot detector URL
This commit is contained in:
parent
81999b667e
commit
4045603e69
1 changed files with 2 additions and 2 deletions
|
|
@ -3,7 +3,7 @@ import json #json parse
|
||||||
import requests #http requests
|
import requests #http requests
|
||||||
import re #regex
|
import re #regex
|
||||||
|
|
||||||
tf2_playerlist_url = "https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/master/tf2_bot_detector/cfg/playerlist.official.json" #Pazer's list of bots
|
tf2_playerlist_url = "https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/master/staging/cfg/playerlist.official.json" #Pazer's list of bots
|
||||||
github_headers = {
|
github_headers = {
|
||||||
'User-Agent': 'tf2-voice-ban-bots/1.0 (Python script - written by github.com/chev2)'
|
'User-Agent': 'tf2-voice-ban-bots/1.0 (Python script - written by github.com/chev2)'
|
||||||
}
|
}
|
||||||
|
|
@ -19,7 +19,7 @@ if r.status_code != 200:
|
||||||
else:
|
else:
|
||||||
print("Connection successful")
|
print("Connection successful")
|
||||||
|
|
||||||
json_info = json.loads(r.content)
|
json_info = r.json()
|
||||||
|
|
||||||
players = []
|
players = []
|
||||||
for player in json_info["players"]:
|
for player in json_info["players"]:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue