From b8af068cbd4f3689214d0c890624f90420e66a7a Mon Sep 17 00:00:00 2001 From: TheMaster99 Date: Thu, 15 Jan 2015 06:19:43 -0500 Subject: [PATCH] make new topic always default to 'ooc' --- server/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/index.js b/server/index.js index d5447a8c..6281dda5 100644 --- a/server/index.js +++ b/server/index.js @@ -1078,7 +1078,7 @@ app.post('/forums/:forumId/topics', function*() { this.assert(forum, 404); this.assertAuthorized(this.currUser, 'CREATE_TOPIC', forum); - var postType = forum.is_roleplay ? 'ic' : 'ooc'; + var postType = 'ooc'; var topic = yield db.createTopic({ userId: this.currUser.id, forumId: forumId,