From 45d80522eb54691db86b5b71f535deb25bef3bfe Mon Sep 17 00:00:00 2001 From: PopSlime Date: Mon, 25 Dec 2023 15:03:38 +0800 Subject: [PATCH] Modify message for missing ruleset. --- Assets/Cryville/Crtr/Browsing/UI/RulesetConfigBrowser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Cryville/Crtr/Browsing/UI/RulesetConfigBrowser.cs b/Assets/Cryville/Crtr/Browsing/UI/RulesetConfigBrowser.cs index 62b9dc7..49a0914 100644 --- a/Assets/Cryville/Crtr/Browsing/UI/RulesetConfigBrowser.cs +++ b/Assets/Cryville/Crtr/Browsing/UI/RulesetConfigBrowser.cs @@ -35,7 +35,7 @@ namespace Cryville.Crtr.Browsing.UI { Game.GameDataPath, "rulesets", rulesetName, ".umgr" )); if (!file.Exists) { - throw new FileNotFoundException("Ruleset for the chart not found\nMake sure you have imported the ruleset"); + throw new FileNotFoundException("Ruleset for the resource not found\nMake sure you have imported the ruleset"); } DirectoryInfo dir = file.Directory; using (StreamReader reader = new StreamReader(file.FullName, Encoding.UTF8)) {