Browse Source

changed initial room description (test)

Akira Laine 9 years ago
parent
commit
4b1d770c0b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/server/server.js

+ 1 - 1
app/server/server.js

@@ -13,7 +13,7 @@ Meteor.startup(function () {
     var stations = [{tag: "edm", display: "EDM"}, {tag: "pop", display: "Pop"}]; //Rooms to be set on server startup
     for (var i in stations) {
         if (Rooms.find({type: stations[i]}).count() === 0) {
-            createRoom(stations[i].display, stations[i].tag, false, "Room description.");
+            createRoom(stations[i].display, stations[i].tag, false, "Room description goes here.");
         }
     }
     emojione.ascii = true;