Corrected error causing CommandEngine commands to not work.
This commit is contained in:
parent
7bc89b294b
commit
974cc0f9b8
3 changed files with 13 additions and 1 deletions
|
@ -11,6 +11,8 @@ namespace MUDCompiler
|
|||
{
|
||||
public partial class frmCompiler : Form
|
||||
{
|
||||
MudEngine.GameManagement.Game game = new MudEngine.GameManagement.Game();
|
||||
|
||||
public frmCompiler()
|
||||
{
|
||||
InitializeComponent();
|
||||
|
@ -45,6 +47,7 @@ namespace MUDCompiler
|
|||
private void openScriptToolStripMenuItem_Click(object sender, EventArgs e)
|
||||
{
|
||||
rScripting.CompileEngine engine = new rScripting.CompileEngine();
|
||||
engine.Compiler = "MudScriptCompiler";
|
||||
|
||||
OpenFileDialog browse = new OpenFileDialog();
|
||||
browse.ShowDialog();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue