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 81
81
var _MAP_iconURL = "<?php echo $ config ->mapIconUrl ; ?> ";
82
82
83
83
// Set if to show Atlas map (WARNING: REQUIRES "atlas" TILE DIRECTORY)
84
- var _MAP_atlasMap = <?php echo $ config ->atlasEnabled ; ?> ;
84
+ var _MAP_atlasMap = <?php echo $ config ->atlasEnabled ? ' true ' : ' false ' ; ?> ;
85
85
86
86
// Set if to show Satellite map (WARNING: REQUIRES "satellite" TILE DIRECTORY)
87
- var _MAP_satelliteMap = <?php echo $ config ->satelliteEnabled ; ?> ;
87
+ var _MAP_satelliteMap = <?php echo $ config ->satelliteEnabled ? ' true ' : ' false ' ; ?> ;
88
88
89
89
// Set if to show Road map (WARNING: REQUIRES "road" TILE DIRECTORY)
90
- var _MAP_roadMap = <?php echo $ config ->roadEnabled ; ?> ;
90
+ var _MAP_roadMap = <?php echo $ config ->roadEnabled ? ' true ' : ' false ' ; ?> ;
91
91
92
92
// Set if to show UV Invert map (WARNING: REQUIRES "uv-invert" TILE DIRECTORY)
93
- var _MAP_UVInvMap = <?php echo $ config ->uvInveredEnabled ; ?> ;
93
+ var _MAP_UVInvMap = <?php echo $ config ->uvInveredEnabled ? ' true ' : ' false ' ; ?> ;
94
94
95
95
// Set to the IP of the GTA server running "live_map" and change the port to the
96
96
// number that is set
97
97
var _SETTINGS_socketUrl = "<?php echo $ config ->socketUrl () ?> ";
98
98
99
99
// Set to false if you don't want to show the player's identifiers (this may be their IP)
100
- var _SETTINGS_showIdentifiers = <?php echo $ config ->showIdentifiers ; ?> ;
100
+ var _SETTINGS_showIdentifiers = <?php echo $ config ->showIdentifiers ? ' true ' : ' false ' ; ?> ;
101
101
102
102
var _SETTINGS_blipUrl = "<?php echo $ config ->blipUrl (); ?> ";
103
103
You can’t perform that action at this time.
0 commit comments