Rename gather types

This commit is contained in:
Chris Blanchard 2016-04-01 13:32:46 +01:00
parent d25b8089fe
commit 6269627060
2 changed files with 7 additions and 7 deletions

View file

@ -155,14 +155,14 @@ const GatherPage = React.createClass({
return {
modal: null,
gatherPool: {
public: {
classic: {
gatherers: []
},
large: {
casual: {
gatherers: []
}
},
currentGather: "public",
currentGather: "classic",
users: [],
messages: [],
maps: [],

View file

@ -17,13 +17,13 @@ let archiveUpdatedCallback = () => {};
const GatherPool = new Map();
const GATHER_CONFIGS = [
{
type: "public",
name: "Public Gather",
type: "classic",
name: "Classic Gather",
description: "No Requirements"
},
{
type: "large",
name: "Large Gather",
type: "casual",
name: "Casual Gather",
description: "No Requirements",
teamSize: 7
}