diff --git a/Libraries/SPTarkov.Server.Core/Controllers/GameController.cs b/Libraries/SPTarkov.Server.Core/Controllers/GameController.cs
index 1d0e8778..02d31e51 100644
--- a/Libraries/SPTarkov.Server.Core/Controllers/GameController.cs
+++ b/Libraries/SPTarkov.Server.Core/Controllers/GameController.cs
@@ -134,7 +134,6 @@ public class GameController(
if (pmcProfile.Info is not null)
{
AddPlayerToPmcNames(pmcProfile);
- CheckForAndRemoveUndefinedDialogues(fullProfile);
}
if (pmcProfile.Skills?.Common is not null)
@@ -489,18 +488,6 @@ public class GameController(
}
}
- ///
- /// Check for a dialog with the key 'undefined', and remove it
- ///
- /// Profile to check for dialog in
- protected void CheckForAndRemoveUndefinedDialogues(SptProfile fullProfile)
- {
- if (fullProfile.DialogueRecords!.TryGetValue("undefined", out _))
- {
- fullProfile.DialogueRecords.Remove("undefined");
- }
- }
-
///
///
///