Skip to content
Snippets Groups Projects
Commit 5fa32b3d authored by ¡Cinder! ㊝'s avatar ¡Cinder! ㊝ :speech_balloon:
Browse files

Free up some limitations on the world map

parent 135699b8
No related branches found
No related tags found
No related merge requests found
......@@ -802,7 +802,7 @@ void LLFloaterWorldMap::updateLocation()
void LLFloaterWorldMap::trackURL(const std::string& region_name, S32 x_coord, S32 y_coord, S32 z_coord)
{
LLSimInfo* sim_info = LLWorldMap::getInstance()->simInfoFromName(region_name);
z_coord = llclamp(z_coord, 0, 4096);
z_coord = llclamp(z_coord, 0, 8192);
if (sim_info)
{
LLVector3 local_pos;
......
......@@ -602,7 +602,7 @@
initial_value="128"
layout="topleft"
left_delta="74"
max_val="255"
max_val="8191"
min_val="0"
name="teleport_coordinate_x"
width="44" >
......@@ -618,7 +618,7 @@
initial_value="128"
layout="topleft"
left_delta="47"
max_val="255"
max_val="8191"
min_val="0"
name="teleport_coordinate_y"
width="44" >
......@@ -634,7 +634,7 @@
initial_value="23"
layout="topleft"
left_delta="47"
max_val="4096"
max_val="10000"
min_val="0"
name="teleport_coordinate_z"
width="55" >
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment