From 41a8c5d7981caffd6e1da0f1ae8ee367fb2c1741 Mon Sep 17 00:00:00 2001 From: AIZAWA Hina Date: Sat, 9 Sep 2023 03:14:33 +0900 Subject: [PATCH] send other team members' species (#142) Co-authored-by: frozenpandaman <7245874+frozenpandaman@users.noreply.github.com> --- s3s.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/s3s.py b/s3s.py index ce2de5d..0689539 100755 --- a/s3s.py +++ b/s3s.py @@ -11,7 +11,7 @@ import msgpack from packaging import version import iksm, utils -A_VERSION = "0.5.4" +A_VERSION = "0.5.5" DEBUG = False @@ -482,6 +482,7 @@ def set_scoreboard(battle, tricolor=False): p_dict["splashtag_title"] = player["byname"] p_dict["weapon"] = utils.b64d(player["weapon"]["id"]) p_dict["inked"] = player["paint"] + p_dict["species"] = player["species"].lower() p_dict["rank_in_team"] = i+1 if "result" in player and player["result"] is not None: p_dict["kill_or_assist"] = player["result"]["kill"]