@@ -18,7 +18,7 @@ public static bool HintDisplayPatch(ref Hint hint, ref HintDisplay __instance)
1818 {
1919 try
2020 {
21- if ( ! PluginConfig . Instance . UseHintCompatibilityAdapter )
21+ if ( ! Plugin . Instance . Config . UseHintCompatibilityAdapter )
2222 return false ;
2323
2424 if ( hint is TextHint textHint && ReferenceHub . TryGetHubNetID ( __instance . connectionToClient . identity . netId , out ReferenceHub referenceHub ) )
@@ -41,7 +41,7 @@ public static bool SendHintPatch1(ref string text, ref float duration, ref Playe
4141 {
4242 try
4343 {
44- if ( ! PluginConfig . Instance . UseHintCompatibilityAdapter )
44+ if ( ! Plugin . Instance . Config . UseHintCompatibilityAdapter )
4545 return false ;
4646
4747 string assemblyName = Assembly . GetCallingAssembly ( ) . FullName ;
@@ -60,7 +60,7 @@ public static bool SendHintPatch2(ref string text, ref HintEffect[] effects, ref
6060 {
6161 try
6262 {
63- if ( ! PluginConfig . Instance . UseHintCompatibilityAdapter )
63+ if ( ! Plugin . Instance . Config . UseHintCompatibilityAdapter )
6464 return false ;
6565
6666 string assemblyName = Assembly . GetCallingAssembly ( ) . FullName ;
@@ -80,7 +80,7 @@ public static bool ExiledHintPatch1(ref string message, ref float duration, ref
8080 {
8181 try
8282 {
83- if ( ! PluginConfig . Instance . UseHintCompatibilityAdapter )
83+ if ( ! Plugin . Instance . Config . UseHintCompatibilityAdapter )
8484 return false ;
8585
8686 string assemblyName = Assembly . GetCallingAssembly ( ) . FullName ;
@@ -99,7 +99,7 @@ public static bool ExiledHintPatch2(ref Exiled.API.Features.Hint hint, ref Exile
9999 {
100100 try
101101 {
102- if ( ! PluginConfig . Instance . UseHintCompatibilityAdapter )
102+ if ( ! Plugin . Instance . Config . UseHintCompatibilityAdapter )
103103 return false ;
104104
105105 if ( ! hint . Show )
0 commit comments