diff --git a/Assets/Scripts/GameManager.cs b/Assets/Scripts/GameManager.cs
index b5d89bc0a..b236959f9 100644
--- a/Assets/Scripts/GameManager.cs
+++ b/Assets/Scripts/GameManager.cs
@@ -259,7 +259,9 @@ namespace HeavenStudio
Debug.Log(Beatmap.data.riqOrigin);
if (Beatmap.data.riqOrigin != "HeavenStudio")
{
- GlobalGameManager.ShowErrorMessage("Warning", "This chart was made for another game,\nand thus may not be playable in Heaven Studio.\nYou may be able to edit this chart in Heaven Studio to be used in its original game.\n\nChart Origin: " + Beatmap.data.riqOrigin.DisplayName());
+ string origin = Beatmap.data.riqOrigin?.DisplayName() ?? "Unknown Origin";
+ GlobalGameManager.ShowErrorMessage("Warning",
+ $"This chart came from\n{origin}\nand uses content not included in Heaven Studio.\n\nYou may be able to edit this chart in Heaven Studio to be used in its original program.");
}
}
}