Skip to content

Commit bce138c

Browse files
committed
Add Oxide.Common as a default reference
1 parent 95e7fe8 commit bce138c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/CSharpPluginLoader.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Oxide.Core;
1+
using Oxide.Core;
22
using Oxide.Core.Plugins;
33
using Oxide.Core.Logging;
44
using Oxide.CSharp;
@@ -13,7 +13,7 @@ namespace Oxide.Plugins
1313
{
1414
public class CSharpPluginLoader : PluginLoader
1515
{
16-
public static string[] DefaultReferences = { "mscorlib", "Oxide.Core", "Oxide.CSharp", "System", "System.Core", "System.Data", "System.Xml" };
16+
public static string[] DefaultReferences = { "mscorlib", "Oxide.Core", "Oxide.CSharp", "Oxide.Common", "System", "System.Core", "System.Data", "System.Xml" };
1717
public static HashSet<string> PluginReferences = new HashSet<string>(DefaultReferences);
1818
public static CSharpPluginLoader Instance;
1919

0 commit comments

Comments
 (0)