remove unnecessary logs/vars
authorxangelo <git@xangelo.ca>
Fri, 9 Jun 2023 15:26:34 +0000 (11:26 -0400)
committerxangelo <git@xangelo.ca>
Fri, 9 Jun 2023 15:26:34 +0000 (11:26 -0400)
src/server/skills.ts

index dc134264227be9f5a7a8daf7aa498963d4dcddbc..59d507508cdcab4c4990f15a3eff74883af52a7f 100644 (file)
@@ -23,11 +23,9 @@ export async function getPlayerSkillsAsObject(playerId: string): Promise<Map<Ski
 export async function updatePlayerSkills(playerId: string, skills: Record<SkillID, number>) {
 
   const sql = [];
-  const params = [];
   each(skills, (val, skillId) => {
     sql.push(`update player_skills set exp = exp + ${val} where id = '${skillId}' and player_id = '${playerId}'`);
   });
 
-  console.log(sql);
   await db.raw(sql.join(';'));
 }