Skip to content

Commit

Permalink
Log verified players
Browse files Browse the repository at this point in the history
  • Loading branch information
RedBigz committed Dec 24, 2024
1 parent f8e3b14 commit b6888f3
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion TABGVR.Server/Identification.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,17 @@ public void Interrogate()

world.WaitThenDoAction(10, () =>
{
if (Verified || !ConfigManager.Config.VROnly) return;
if (Verified)
{
#if CITRUSLIB
Plugin.ModLogger.Log(
#elif TASM
Logging.Log(Logging.LogLevel.Info, "TABGVR",

Check failure on line 29 in TABGVR.Server/Identification.cs

View workflow job for this annotation

GitHub Actions / build

The name 'Logging' does not exist in the current context

Check failure on line 29 in TABGVR.Server/Identification.cs

View workflow job for this annotation

GitHub Actions / build

The name 'Logging' does not exist in the current context

Check failure on line 29 in TABGVR.Server/Identification.cs

View workflow job for this annotation

GitHub Actions / build

The name 'Logging' does not exist in the current context

Check failure on line 29 in TABGVR.Server/Identification.cs

View workflow job for this annotation

GitHub Actions / build

The name 'Logging' does not exist in the current context
#endif
$"Successfully verified {playerStore.playerServer.PlayerName}.");

return;
}

#if CITRUSLIB
CitrusLib.Citrus.SelfParrot(playerStore.playerServer,
Expand Down

0 comments on commit b6888f3

Please sign in to comment.