From 71c43a4a57475b236b52b11afef7e50a37285e2c Mon Sep 17 00:00:00 2001 From: Kevin Trocolli Date: Wed, 12 Apr 2023 02:39:56 -0400 Subject: [PATCH] pokken: add_profile_points stub --- titles/pokken/schema/profile.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/titles/pokken/schema/profile.py b/titles/pokken/schema/profile.py index bab53de..37729fc 100644 --- a/titles/pokken/schema/profile.py +++ b/titles/pokken/schema/profile.py @@ -137,6 +137,9 @@ class PokkenProfileData(BaseData): def update_profile_tutorial_flags(self, user_id: int, tutorial_flags: Dict) -> None: pass + def add_profile_points(self, user_id: int, rank_pts: int, money: int, score_pts: int) -> None: + pass + def get_profile(self, user_id: int) -> Optional[Row]: sql = profile.select(profile.c.user == user_id) result = self.execute(sql)