Skip to content

Commit

Permalink
Merge pull request #761 from xPaw/patch-5
Browse files Browse the repository at this point in the history
Fix cell_id field in ContentServerDirectoryService
  • Loading branch information
yaakov-h authored Oct 24, 2019
2 parents 46d7e81 + e21d0c1 commit 5159028
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public static class ContentServerDirectoryService

Type = child[ "type" ].AsString(),
SourceID = child[ "source_id"].AsInteger(),
CellID = (uint)child[ "cell" ].AsInteger(),
CellID = (uint)child[ "cell_id" ].AsInteger(),

Load = child[ "load" ].AsInteger(),
WeightedLoad = child[ "weighted_load" ].AsInteger(),
Expand Down

0 comments on commit 5159028

Please sign in to comment.