From 3a215a1314aaf23595870fac55b58599b429d416 Mon Sep 17 00:00:00 2001 From: cracrayol Date: Wed, 24 Sep 2025 16:45:58 +0200 Subject: [PATCH] Unilab : Fix first play value --- popn@asphyxia/handler/usaneko.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/popn@asphyxia/handler/usaneko.ts b/popn@asphyxia/handler/usaneko.ts index 43f12ba..9f4fe99 100644 --- a/popn@asphyxia/handler/usaneko.ts +++ b/popn@asphyxia/handler/usaneko.ts @@ -563,8 +563,8 @@ const getProfile = async (refid: string, version: string, name?: string) => { const teams = achievements.team || []; const batteries = achievements.battery || []; - player.event_p27.first_play = K.ITEM('bool', teams.length != 0); - player.event_p27.elem_first_play = K.ITEM('bool', batteries.length != 0); + player.event_p27.first_play = K.ITEM('bool', teams.length == 0); + player.event_p27.elem_first_play = K.ITEM('bool', batteries.length == 0); player.event_p27.team = []; for (const team of teams) {