From 34d2676db36bf682e73c96186e30641a2625d9af Mon Sep 17 00:00:00 2001
From: TheBrokenRail <connor24nolan@live.com>
Date: Fri, 2 Dec 2016 15:57:56 -0500
Subject: [PATCH] Update index.js

---
 src/index.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/index.js b/src/index.js
index 204970429..149f06798 100644
--- a/src/index.js
+++ b/src/index.js
@@ -158,6 +158,7 @@ VirtualMachine.prototype.loadProject = function (json) {
 VirtualMachine.prototype.exportToJson = function () {
     var obj = new Object();
     obj.sprites = this.runtime.targets;
+    obj.meta = new Object();
     obj.meta.name = 'WIP';
     obj.meta.useragent = navigator.userAgent;
     return JSON.stringify(obj, null, 2);