File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -75,20 +75,20 @@ var MapChange = MapChange || (function() {
75
75
// Get a reference to the state.
76
76
var st = state . MapChange ;
77
77
// Check if the settings need updating from the global config.
78
- // if (gc && gc.lastsaved && gc.lastsaved > st.gcUpdated) {
78
+ if ( gc && gc . lastsaved && gc . lastsaved > st . gcUpdated ) {
79
79
// Get the last saved time.
80
80
//st.gcUpdated = gc.lastsaved;
81
81
// Get the debug setting from the global config.
82
- st . config . debug = gc [ 'Debug Mode' ] == ' true' ;
82
+ st . config . debug = gc [ 'Debug Mode' ] == " true" ;
83
83
// Get the gmNotify setting from the global config.
84
- st . config . gmNotify = gc [ 'GM Notification' ] == ' true' ;
84
+ st . config . gmNotify = gc [ 'GM Notification' ] == " true" ;
85
85
// Get the marker setting from the global config.
86
86
st . config . marker = gc [ 'Marker' ] || "[GM]" ;
87
87
// Get the hide marker setting from the global config.
88
88
st . config . hideMarker = gc [ 'Hide Marker' ] || "[Hide]" ;
89
89
// Get the invertedMarker setting from the global config.
90
- st . config . invertedMarker = gc [ 'Inverted Marker' ] == ' true' ;
91
- // }
90
+ st . config . invertedMarker = gc [ 'Inverted Marker' ] == " true" ;
91
+ }
92
92
// Debug
93
93
if ( st . config . debug ) {
94
94
log ( "Global Config" ) ;
You can’t perform that action at this time.
0 commit comments