From 7be311dda64b57a55cbd7b27f2a8370244128172 Mon Sep 17 00:00:00 2001 From: intervinn Date: Tue, 17 Dec 2024 15:05:20 +0300 Subject: [PATCH] Split Fonts and CustomFont --- Bloxstrap/Paths.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Bloxstrap/Paths.cs b/Bloxstrap/Paths.cs index 43d4a1c..3a14d36 100644 --- a/Bloxstrap/Paths.cs +++ b/Bloxstrap/Paths.cs @@ -25,7 +25,8 @@ public static string Application { get; private set; } = ""; - public static string CustomFont => Path.Combine(Modifications, "content\\fonts\\CustomFont.ttf"); + public static string Fonts => Path.Combine("content\\fonts"); + public static string CustomFont => Path.Combine(Fonts, "CustomFont.ttf"); public static bool Initialized => !String.IsNullOrEmpty(Base);