Skip to content

Commit

Permalink
Increase page size of web socket request for space objects pages
Browse files Browse the repository at this point in the history
  • Loading branch information
RevoluPowered committed Mar 27, 2024
1 parent 9a6735f commit bba8d09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mirror-godot-app/scripts/net/zone_socket.gd
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ func update_status(status: Dictionary) -> void:
func get_space_objects_page(space_id: String, page: int=1) -> void:
var request = {
"event": ZONE_GET_SPACE_OBJECTS_PAGE,
"data": { "id": space_id, "page": page, "perPage": 40 }
"data": { "id": space_id, "page": page, "perPage": 150 }
}
_requests.push_back(request)

Expand Down

0 comments on commit bba8d09

Please sign in to comment.