@@ -617,6 +617,7 @@ async function pairingEntityStorageMonitor(flm: FcmListenerManager, steamId: typ
617617 }
618618}
619619
620+ /* eslint-disable-next-line @typescript-eslint/no-unused-vars */
620621async function alarmAlarm ( flm : FcmListenerManager , steamId : types . SteamId , title : string , message : string ,
621622 body : AlarmAlarmBody ) {
622623 /* Unfortunately the alarm notification from the fcm listener is unreliable. The notification does not include
@@ -658,6 +659,7 @@ async function alarmAlarm(flm: FcmListenerManager, steamId: types.SteamId, title
658659 }
659660}
660661
662+ /* eslint-disable-next-line @typescript-eslint/no-unused-vars */
661663async function alarmPlugin ( flm : FcmListenerManager , steamId : types . SteamId , title : string , message : string ,
662664 body : AlarmPluginBody ) {
663665 const funcName = `[FcmListenerManager: alarmPlugin: ${ steamId } ]` ;
@@ -703,6 +705,7 @@ async function alarmPlugin(flm: FcmListenerManager, steamId: types.SteamId, titl
703705 }
704706}
705707
708+ /* eslint-disable-next-line @typescript-eslint/no-unused-vars */
706709async function playerDeath ( flm : FcmListenerManager , steamId : types . SteamId , title : string , body : PlayerDeathBody ) {
707710 const funcName = `[FcmListenerManager: playerDeath: ${ steamId } ]` ;
708711 const credentials = cm . getCredentials ( steamId ) ;
@@ -715,6 +718,7 @@ async function playerDeath(flm: FcmListenerManager, steamId: types.SteamId, titl
715718 await discordMessages . sendFcmPlayerDeathMessage ( flm . dm , steamId , title , body ) ;
716719}
717720
721+ /* eslint-disable-next-line @typescript-eslint/no-unused-vars */
718722async function teamLogin ( flm : FcmListenerManager , steamId : types . SteamId , body : TeamLoginBody ) {
719723 const funcName = `[FcmListenerManager: teamLogin: ${ steamId } ]` ;
720724 const credentials = cm . getCredentials ( steamId ) ;
@@ -743,6 +747,7 @@ async function teamLogin(flm: FcmListenerManager, steamId: types.SteamId, body:
743747 }
744748}
745749
750+ /* eslint-disable-next-line @typescript-eslint/no-unused-vars */
746751async function newsNews ( flm : FcmListenerManager , steamId : types . SteamId , title : string , message : string ,
747752 body : NewsNewsBody ) {
748753 const funcName = `[FcmListenerManager: newsNews: ${ steamId } ]` ;
0 commit comments