Skip to content

Commit bba8d09

Browse files
committed
Increase page size of web socket request for space objects pages
1 parent 9a6735f commit bba8d09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mirror-godot-app/scripts/net/zone_socket.gd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ func update_status(status: Dictionary) -> void:
300300
func get_space_objects_page(space_id: String, page: int=1) -> void:
301301
var request = {
302302
"event": ZONE_GET_SPACE_OBJECTS_PAGE,
303-
"data": { "id": space_id, "page": page, "perPage": 40 }
303+
"data": { "id": space_id, "page": page, "perPage": 150 }
304304
}
305305
_requests.push_back(request)
306306

0 commit comments

Comments
 (0)