Fix player.get_side_quest
This commit is contained in:
parent
05d22a0ce8
commit
99c1795b93
|
@ -171,7 +171,7 @@ class player():
|
||||||
def get_side_quest(self, qid):
|
def get_side_quest(self, qid):
|
||||||
cursor = self.DB.cursor()
|
cursor = self.DB.cursor()
|
||||||
query = ('SELECT chat_id, qid, name, importance, difficulty, '
|
query = ('SELECT chat_id, qid, name, importance, difficulty, '
|
||||||
'state FROM quests WHERE chat_id = ? AND qid = ?')
|
'state FROM side_quests WHERE chat_id = ? AND qid = ?')
|
||||||
cursor.execute(query, (self.CHAT_ID, qid))
|
cursor.execute(query, (self.CHAT_ID, qid))
|
||||||
row = cursor.fetchone()
|
row = cursor.fetchone()
|
||||||
if row is None:
|
if row is None:
|
||||||
|
|
Loading…
Reference in New Issue