diff --git a/pyproject.toml b/pyproject.toml index 63a118b1..3cd729ca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ [tool.poetry] name = "royalpack" - version = "5.9.9" + version = "5.9.10" description = "A Royalnet command pack for the Royal Games community" authors = ["Stefano Pigozzi "] license = "AGPL-3.0+" diff --git a/royalpack/tables/steam.py b/royalpack/tables/steam.py index 24007241..bbc0d4f3 100644 --- a/royalpack/tables/steam.py +++ b/royalpack/tables/steam.py @@ -45,7 +45,10 @@ class Steam: def json(self): return { - "steamid": self._steamid, + "steamid2": self.steamid.as_steam2, + "steamid3": self.steamid.as_steam3, + "steamid32": self.steamid.as_32, + "steamid64": self.steamid.as_64, "persona_name": self.persona_name, "profile_url": self.profile_url, "avatar": self.avatar, diff --git a/royalpack/version.py b/royalpack/version.py index bdd6cc67..9d75da72 100644 --- a/royalpack/version.py +++ b/royalpack/version.py @@ -1 +1 @@ -semantic = "5.9.9" +semantic = "5.9.10"