mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 18:47:35 +00:00
Refactoring of Options. Renamed to OptionsHelper
Because that is what it is.
This commit is contained in:
parent
ce01c8888e
commit
05c4e4de81
6 changed files with 23 additions and 23 deletions
|
|
@ -3,11 +3,11 @@
|
|||
"Lib/Utilities/NotificationCenter",
|
||||
"Game/Channel/User",
|
||||
"Lib/Utilities/Protocol/Helper",
|
||||
"Lib/Utilities/Options",
|
||||
"Lib/Utilities/OptionsHelper",
|
||||
"Game/Config/Settings"
|
||||
],
|
||||
|
||||
function (GameController, nc, User, ProtocolHelper, Options, Settings) {
|
||||
function (GameController, nc, User, ProtocolHelper, OptionsHelper, Settings) {
|
||||
|
||||
"use strict";
|
||||
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
this.levelListIndex = -1;
|
||||
this.gameController = null;
|
||||
|
||||
this.options = options = Options.merge(options, {
|
||||
this.options = options = OptionsHelper.merge(options, {
|
||||
levelUids: Settings.CHANNEL_DEFAULT_LEVELS
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue