Skip to content

Commit 68f0c12

Browse files
Update NewPlugin.cs
1 parent 8522395 commit 68f0c12

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

Flames/Modules/Compiling/New/NewPlugin.cs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,17 @@ public virtual void Help(Player p)
8888
public virtual string Flames_Version { get { return "9.0.4.8"; } }
8989
/// <summary> Work on backwards compatibility with MCGalaxy </summary>
9090
public virtual string MCGalaxy_Version { get { return null; } }
91+
#if CORE
92+
/// <summary> Work on backwards compatibility with other cores </summary>
93+
public virtual string GoldenSparks_Version { get { return null; } }
94+
/// <summary> Work on backwards compatibility with other cores </summary>
95+
public virtual string SuperNova_Version { get { return null; } }
96+
/// <summary> Work on backwards compatibility with other cores </summary>
97+
public virtual string DeadNova_Version { get { return null; } }
98+
99+
/// <summary> Work on backwards compatibility with other cores </summary>
100+
public virtual string RandomStrangers_Version { get { return null; } }
101+
#endif
91102
/// <summary> Version of this new plugin. </summary>
92103
public virtual int build { get { return 0; } }
93104
/// <summary> Message to display once this new plugin is loaded. </summary>
@@ -202,6 +213,12 @@ public static void LoadAll()
202213
LoadCoreNewPlugin(new TWPlugin());
203214
LoadCoreNewPlugin(new ZSPlugin());
204215
LoadCoreNewPlugin(new NewCompilerPlugin());
216+
#if CORE
217+
LoadCoreNewPlugin(new GoldenSparksPluginLoader());
218+
LoadCoreNewPlugin(new SuperNovaPluginLoader());
219+
LoadCoreNewPlugin(new DeadNovaPluginLoader());
220+
LoadCoreNewPlugin(new RandomStrangersPluginLoader());
221+
#endif
205222
IScripting.AutoloadNewPlugins();
206223
}
207224
public static void LoadCoreNewPlugin(NewPlugin newplugin)

0 commit comments

Comments
 (0)