create account

Minecolonies & Hotfixes by raycoms

View this thread on: hive.blogpeakd.comecency.com
· @raycoms · (edited)
$124.39
Minecolonies & Hotfixes
Hey everyone, over the weekend I was able to cut some slack and fix some important long-time bug, I also got finally time to debug some parts of our code which enabled me to fix some bugs we didn't even notice until now.

First of all, sometimes we got some weird crashes with Minecraft classes. Debugging it I found out it happens here.

![](https://i.imgur.com/9q11zTm.png)

Getting into the code of the RandomPositionGenerator.

![](https://i.imgur.com/9EU7Za3.png)

Brought me right here.

It seemed that at "distanceSq" of the getHomePosition the crash occurred.

![](https://i.imgur.com/sMEWYeq.png)

I noticed then that we were overriding this method.

Basically:

For us, the Home position is where he sleeps, for Minecraft, where the entity initially spawned.

Therefore, after a lot of time of digging, the fix was easy:

![](https://i.imgur.com/F6KLSB2.png)


The second bug has been around for a long time.

![](https://i.imgur.com/BrBcXJC.png)

Minecraft has a bunch of blocks like grass paths or tilled dirt which are slightly lower than the default block height.


As soon as a nonsolid block was underneath them, our citizens would get stuck on top of them and stop moving or pathing.

After a lot of time of wondering, I figured that the issue probably is that the pathfinding does pick the block underneath it and not the block itself when trying to get the block under the entity.

> Or better:
> If citizens stand on a normal block -> pos.down returns the block they stand on
> If citizens stand on this kind of block -> pos.down returns the block underneath the block they stand on

![](https://i.imgur.com/EBaxpkt.png)


The fix was then to set the position to 1 up if we detect that the citizens stand on top of one of those blocks.

And they start moving smoothly again.


The next bug is related to square colonies, as I explained a few weeks ago, we decided to move to square colonies and decides to store the data in the chunks of Minecraft itself.

Yesterday we wanted to put this on the official server but decided to put it on the test server first, weirdly we noticed a few strange buts since colonies started to take this shape:

![](https://i.imgur.com/ju6eset.png)

We noticed that this happened when two colonies were quite close to each other.

Meaning that our merge wasn't working the right way.

![](https://i.imgur.com/n3Jw9Ij.png)

First of all, we noticed that we were merging storage with newStorage but were still saving storage to the file.

![](https://i.imgur.com/JLyoUfT.png)

Which was easy to fix.

Then after restarting the tests, we noticed that still, something was off, so it must be inside the merge.

![](https://i.imgur.com/ytFjNb7.png)


Where I noticed that we were always overriding the colony id and not checking if it was actually a delete request (noticeable if coloniesToRemove is not empty) or if it actually had a colony id.

![](https://i.imgur.com/VBlcb2d.png)

Besides that, I found a small bug where we send items to the workers and do not calc the correct amount.

![](https://i.imgur.com/yPKeTXq.png)

And a small bug in the Mod compatability PR I released 3 days ago.
Which caused the game to crash.

> Since the method was abstract it wasn't callable when the mod wasn't installed.


I am sure our players will be extremely happy with these changes because they will make our mod a whole more stable!

<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@raycoms/minecolonies-and-hotfixes">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>

+ https://github.com/Minecolonies/minecolonies/pull/2318 (couldn't append this pr)


> Did you know you can sell your vote to Minnowbooster?  
> You don't even need high voting power to get it sold and you will get out 85% of the profits!
> 
> If you register via my link you will get a tip of 0.5% on each of your sold votes and BuildTeam puts another 1.5% on top of it for me!  
> [https://www.minnowbooster.com/referral/49434](https://www.minnowbooster.com/referral/49434 "This link will take you away from steemit.com")
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 2 others
properties (23)
authorraycoms
permlinkminecolonies-and-hotfixes
categoryutopian-io
json_metadata"{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":65616760,"name":"minecolonies","full_name":"Minecolonies/minecolonies","html_url":"https://github.com/Minecolonies/minecolonies","fork":false,"owner":{"login":"Minecolonies"}},"pullRequests":[{"author_association":"CONTRIBUTOR","_links":{"statuses":{"href":"https://api.github.com/repos/Minecolonies/minecolonies/statuses/71ddbfdb5990cbfee708e48f2100a9aa740847c3"},"commits":{"href":"https://api.github.com/repos/Minecolonies/minecolonies/pulls/2324/commits"},"review_comment":{"href":"https://api.github.com/repos/Minecolonies/minecolonies/pulls/comments{/number}"},"review_comments":{"href":"https://api.github.com/repos/Minecolonies/minecolonies/pulls/2324/comments"},"comments":{"href":"https://api.github.com/repos/Minecolonies/minecolonies/issues/2324/comments"},"issue":{"href":"https://api.github.com/repos/Minecolonies/minecolonies/issues/2324"},"html":{"href":"https://github.com/Minecolonies/minecolonies/pull/2324"},"self":{"href":"https://api.github.com/repos/Minecolonies/minecolonies/pulls/2324"}},"base":{"repo":{"default_branch":"version/1.12","watchers":84,"open_issues":152,"forks":72,"license":{"url":"https://api.github.com/licenses/gpl-3.0","spdx_id":"GPL-3.0","name":"GNU General Public License v3.0","key":"gpl-3.0"},"open_issues_count":152,"archived":false,"mirror_url":null,"forks_count":72,"has_pages":false,"has_wiki":true,"has_downloads":true,"has_projects":true,"has_issues":true,"language":"Java","watchers_count":84,"stargazers_count":84,"size":47495,"homepage":"http://minecolonies.com/","svn_url":"https://github.com/Minecolonies/minecolonies","clone_url":"https://github.com/Minecolonies/minecolonies.git","ssh_url":"git@github.com:Minecolonies/minecolonies.git","git_url":"git://github.com/Minecolonies/minecolonies.git","pushed_at":"2018-03-19T14:49:22Z","updated_at":"2018-03-19T14:38:28Z","created_at":"2016-08-13T12:45:38Z","deployments_url":"https://api.github.com/repos/Minecolonies/minecolonies/deployments","releases_url":"https://api.github.com/repos/Minecolonies/minecolonies/releases{/id}","labels_url":"https://api.github.com/repos/Minecolonies/minecolonies/labels{/name}","notifications_url":"https://api.github.com/repos/Minecolonies/minecolonies/notifications{?since,all,participating}","milestones_url":"https://api.github.com/repos/Minecolonies/minecolonies/milestones{/number}","pulls_url":"https://api.github.com/repos/Minecolonies/minecolonies/pulls{/number}","issues_url":"https://api.github.com/repos/Minecolonies/minecolonies/issues{/number}","downloads_url":"https://api.github.com/repos/Minecolonies/minecolonies/downloads","archive_url":"https://api.github.com/repos/Minecolonies/minecolonies/{archive_format}{/ref}","merges_url":"https://api.github.com/repos/Minecolonies/minecolonies/merges","compare_url":"https://api.github.com/repos/Minecolonies/minecolonies/compare/{base}...{head}","contents_url":"https://api.github.com/repos/Minecolonies/minecolonies/contents/{+path}","issue_comment_url":"https://api.github.com/repos/Minecolonies/minecolonies/issues/comments{/number}","comments_url":"https://api.github.com/repos/Minecolonies/minecolonies/comments{/number}","git_commits_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/commits{/sha}","commits_url":"https://api.github.com/repos/Minecolonies/minecolonies/commits{/sha}","subscription_url":"https://api.github.com/repos/Minecolonies/minecolonies/subscription","subscribers_url":"https://api.github.com/repos/Minecolonies/minecolonies/subscribers","contributors_url":"https://api.github.com/repos/Minecolonies/minecolonies/contributors","stargazers_url":"https://api.github.com/repos/Minecolonies/minecolonies/stargazers","languages_url":"https://api.github.com/repos/Minecolonies/minecolonies/languages","statuses_url":"https://api.github.com/repos/Minecolonies/minecolonies/statuses/{sha}","trees_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/trees{/sha}","git_refs_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/tags{/sha}","blobs_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/blobs{/sha}","tags_url":"https://api.github.com/repos/Minecolonies/minecolonies/tags","branches_url":"https://api.github.com/repos/Minecolonies/minecolonies/branches{/branch}","assignees_url":"https://api.github.com/repos/Minecolonies/minecolonies/assignees{/user}","events_url":"https://api.github.com/repos/Minecolonies/minecolonies/events","issue_events_url":"https://api.github.com/repos/Minecolonies/minecolonies/issues/events{/number}","hooks_url":"https://api.github.com/repos/Minecolonies/minecolonies/hooks","teams_url":"https://api.github.com/repos/Minecolonies/minecolonies/teams","collaborators_url":"https://api.github.com/repos/Minecolonies/minecolonies/collaborators{/collaborator}","keys_url":"https://api.github.com/repos/Minecolonies/minecolonies/keys{/key_id}","forks_url":"https://api.github.com/repos/Minecolonies/minecolonies/forks","url":"https://api.github.com/repos/Minecolonies/minecolonies","fork":false,"description":"Minecolonies minecraft mod","html_url":"https://github.com/Minecolonies/minecolonies","private":false,"owner":{"site_admin":false,"type":"Organization","received_events_url":"https://api.github.com/users/Minecolonies/received_events","events_url":"https://api.github.com/users/Minecolonies/events{/privacy}","repos_url":"https://api.github.com/users/Minecolonies/repos","organizations_url":"https://api.github.com/users/Minecolonies/orgs","subscriptions_url":"https://api.github.com/users/Minecolonies/subscriptions","starred_url":"https://api.github.com/users/Minecolonies/starred{/owner}{/repo}","gists_url":"https://api.github.com/users/Minecolonies/gists{/gist_id}","following_url":"https://api.github.com/users/Minecolonies/following{/other_user}","followers_url":"https://api.github.com/users/Minecolonies/followers","html_url":"https://github.com/Minecolonies","url":"https://api.github.com/users/Minecolonies","gravatar_id":"","avatar_url":"https://avatars3.githubusercontent.com/u/5167336?v=4","id":5167336,"login":"Minecolonies"},"full_name":"Minecolonies/minecolonies","name":"minecolonies","id":65616760},"user":{"site_admin":false,"type":"Organization","received_events_url":"https://api.github.com/users/Minecolonies/received_events","events_url":"https://api.github.com/users/Minecolonies/events{/privacy}","repos_url":"https://api.github.com/users/Minecolonies/repos","organizations_url":"https://api.github.com/users/Minecolonies/orgs","subscriptions_url":"https://api.github.com/users/Minecolonies/subscriptions","starred_url":"https://api.github.com/users/Minecolonies/starred{/owner}{/repo}","gists_url":"https://api.github.com/users/Minecolonies/gists{/gist_id}","following_url":"https://api.github.com/users/Minecolonies/following{/other_user}","followers_url":"https://api.github.com/users/Minecolonies/followers","html_url":"https://github.com/Minecolonies","url":"https://api.github.com/users/Minecolonies","gravatar_id":"","avatar_url":"https://avatars3.githubusercontent.com/u/5167336?v=4","id":5167336,"login":"Minecolonies"},"sha":"d2a4da787ce403427b840d14a44758cb44ae31c5","ref":"version/1.12","label":"Minecolonies:version/1.12"},"head":{"repo":{"default_branch":"version/1.12","watchers":84,"open_issues":152,"forks":72,"license":{"url":"https://api.github.com/licenses/gpl-3.0","spdx_id":"GPL-3.0","name":"GNU General Public License v3.0","key":"gpl-3.0"},"open_issues_count":152,"archived":false,"mirror_url":null,"forks_count":72,"has_pages":false,"has_wiki":true,"has_downloads":true,"has_projects":true,"has_issues":true,"language":"Java","watchers_count":84,"stargazers_count":84,"size":47495,"homepage":"http://minecolonies.com/","svn_url":"https://github.com/Minecolonies/minecolonies","clone_url":"https://github.com/Minecolonies/minecolonies.git","ssh_url":"git@github.com:Minecolonies/minecolonies.git","git_url":"git://github.com/Minecolonies/minecolonies.git","pushed_at":"2018-03-19T14:49:22Z","updated_at":"2018-03-19T14:38:28Z","created_at":"2016-08-13T12:45:38Z","deployments_url":"https://api.github.com/repos/Minecolonies/minecolonies/deployments","releases_url":"https://api.github.com/repos/Minecolonies/minecolonies/releases{/id}","labels_url":"https://api.github.com/repos/Minecolonies/minecolonies/labels{/name}","notifications_url":"https://api.github.com/repos/Minecolonies/minecolonies/notifications{?since,all,participating}","milestones_url":"https://api.github.com/repos/Minecolonies/minecolonies/milestones{/number}","pulls_url":"https://api.github.com/repos/Minecolonies/minecolonies/pulls{/number}","issues_url":"https://api.github.com/repos/Minecolonies/minecolonies/issues{/number}","downloads_url":"https://api.github.com/repos/Minecolonies/minecolonies/downloads","archive_url":"https://api.github.com/repos/Minecolonies/minecolonies/{archive_format}{/ref}","merges_url":"https://api.github.com/repos/Minecolonies/minecolonies/merges","compare_url":"https://api.github.com/repos/Minecolonies/minecolonies/compare/{base}...{head}","contents_url":"https://api.github.com/repos/Minecolonies/minecolonies/contents/{+path}","issue_comment_url":"https://api.github.com/repos/Minecolonies/minecolonies/issues/comments{/number}","comments_url":"https://api.github.com/repos/Minecolonies/minecolonies/comments{/number}","git_commits_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/commits{/sha}","commits_url":"https://api.github.com/repos/Minecolonies/minecolonies/commits{/sha}","subscription_url":"https://api.github.com/repos/Minecolonies/minecolonies/subscription","subscribers_url":"https://api.github.com/repos/Minecolonies/minecolonies/subscribers","contributors_url":"https://api.github.com/repos/Minecolonies/minecolonies/contributors","stargazers_url":"https://api.github.com/repos/Minecolonies/minecolonies/stargazers","languages_url":"https://api.github.com/repos/Minecolonies/minecolonies/languages","statuses_url":"https://api.github.com/repos/Minecolonies/minecolonies/statuses/{sha}","trees_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/trees{/sha}","git_refs_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/tags{/sha}","blobs_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/blobs{/sha}","tags_url":"https://api.github.com/repos/Minecolonies/minecolonies/tags","branches_url":"https://api.github.com/repos/Minecolonies/minecolonies/branches{/branch}","assignees_url":"https://api.github.com/repos/Minecolonies/minecolonies/assignees{/user}","events_url":"https://api.github.com/repos/Minecolonies/minecolonies/events","issue_events_url":"https://api.github.com/repos/Minecolonies/minecolonies/issues/events{/number}","hooks_url":"https://api.github.com/repos/Minecolonies/minecolonies/hooks","teams_url":"https://api.github.com/repos/Minecolonies/minecolonies/teams","collaborators_url":"https://api.github.com/repos/Minecolonies/minecolonies/collaborators{/collaborator}","keys_url":"https://api.github.com/repos/Minecolonies/minecolonies/keys{/key_id}","forks_url":"https://api.github.com/repos/Minecolonies/minecolonies/forks","url":"https://api.github.com/repos/Minecolonies/minecolonies","fork":false,"description":"Minecolonies minecraft mod","html_url":"https://github.com/Minecolonies/minecolonies","private":false,"owner":{"site_admin":false,"type":"Organization","received_events_url":"https://api.github.com/users/Minecolonies/received_events","events_url":"https://api.github.com/users/Minecolonies/events{/privacy}","repos_url":"https://api.github.com/users/Minecolonies/repos","organizations_url":"https://api.github.com/users/Minecolonies/orgs","subscriptions_url":"https://api.github.com/users/Minecolonies/subscriptions","starred_url":"https://api.github.com/users/Minecolonies/starred{/owner}{/repo}","gists_url":"https://api.github.com/users/Minecolonies/gists{/gist_id}","following_url":"https://api.github.com/users/Minecolonies/following{/other_user}","followers_url":"https://api.github.com/users/Minecolonies/followers","html_url":"https://github.com/Minecolonies","url":"https://api.github.com/users/Minecolonies","gravatar_id":"","avatar_url":"https://avatars3.githubusercontent.com/u/5167336?v=4","id":5167336,"login":"Minecolonies"},"full_name":"Minecolonies/minecolonies","name":"minecolonies","id":65616760},"user":{"site_admin":false,"type":"Organization","received_events_url":"https://api.github.com/users/Minecolonies/received_events","events_url":"https://api.github.com/users/Minecolonies/events{/privacy}","repos_url":"https://api.github.com/users/Minecolonies/repos","organizations_url":"https://api.github.com/users/Minecolonies/orgs","subscriptions_url":"https://api.github.com/users/Minecolonies/subscriptions","starred_url":"https://api.github.com/users/Minecolonies/starred{/owner}{/repo}","gists_url":"https://api.github.com/users/Minecolonies/gists{/gist_id}","following_url":"https://api.github.com/users/Minecolonies/following{/other_user}","followers_url":"https://api.github.com/users/Minecolonies/followers","html_url":"https://github.com/Minecolonies","url":"https://api.github.com/users/Minecolonies","gravatar_id":"","avatar_url":"https://avatars3.githubusercontent.com/u/5167336?v=4","id":5167336,"login":"Minecolonies"},"sha":"71ddbfdb5990cbfee708e48f2100a9aa740847c3","ref":"hotfix/chunkload","label":"Minecolonies:hotfix/chunkload"},"statuses_url":"https://api.github.com/repos/Minecolonies/minecolonies/statuses/71ddbfdb5990cbfee708e48f2100a9aa740847c3","comments_url":"https://api.github.com/repos/Minecolonies/minecolonies/issues/2324/comments","review_comment_url":"https://api.github.com/repos/Minecolonies/minecolonies/pulls/comments{/number}","review_comments_url":"https://api.github.com/repos/Minecolonies/minecolonies/pulls/2324/comments","commits_url":"https://api.github.com/repos/Minecolonies/minecolonies/pulls/2324/commits","milestone":null,"labels":[],"requested_teams":[],"requested_reviewers":[],"assignees":[],"assignee":null,"merge_commit_sha":"78558ec2318e9f342adfe610891ad053cb46f4f8","merged_at":"2018-03-19T14:38:25Z","closed_at":"2018-03-19T14:38:25Z","updated_at":"2018-03-19T14:42:57Z","created_at":"2018-03-19T14:00:29Z","body":"Closes #1358 \r\n\r\n# Changes proposed in this pull request:\r\n- Fixes a crash with random pos without townhall or home\r\n- Fixes a problem where citizens are unable to move on top of certain blocks\r\n\r\n\r\nReview please\r\n","user":{"site_admin":false,"type":"User","received_events_url":"https://api.github.com/users/Raycoms/received_events","events_url":"https://api.github.com/users/Raycoms/events{/privacy}","repos_url":"https://api.github.com/users/Raycoms/repos","organizations_url":"https://api.github.com/users/Raycoms/orgs","subscriptions_url":"https://api.github.com/users/Raycoms/subscriptions","starred_url":"https://api.github.com/users/Raycoms/starred{/owner}{/repo}","gists_url":"https://api.github.com/users/Raycoms/gists{/gist_id}","following_url":"https://api.github.com/users/Raycoms/following{/other_user}","followers_url":"https://api.github.com/users/Raycoms/followers","html_url":"https://github.com/Raycoms","url":"https://api.github.com/users/Raycoms","gravatar_id":"","avatar_url":"https://avatars1.githubusercontent.com/u/6438347?v=4","id":6438347,"login":"Raycoms"},"title":"Some fixes","locked":false,"state":"closed","number":2324,"issue_url":"https://api.github.com/repos/Minecolonies/minecolonies/issues/2324","patch_url":"https://github.com/Minecolonies/minecolonies/pull/2324.patch","diff_url":"https://github.com/Minecolonies/minecolonies/pull/2324.diff","html_url":"https://github.com/Minecolonies/minecolonies/pull/2324","id":175907866,"url":"https://api.github.com/repos/Minecolonies/minecolonies/pulls/2324"},{"author_association":"CONTRIBUTOR","_links":{"statuses":{"href":"https://api.github.com/repos/Minecolonies/minecolonies/statuses/b8688bfb81738d8bd535cf3cf65270353d3e66a0"},"commits":{"href":"https://api.github.com/repos/Minecolonies/minecolonies/pulls/2323/commits"},"review_comment":{"href":"https://api.github.com/repos/Minecolonies/minecolonies/pulls/comments{/number}"},"review_comments":{"href":"https://api.github.com/repos/Minecolonies/minecolonies/pulls/2323/comments"},"comments":{"href":"https://api.github.com/repos/Minecolonies/minecolonies/issues/2323/comments"},"issue":{"href":"https://api.github.com/repos/Minecolonies/minecolonies/issues/2323"},"html":{"href":"https://github.com/Minecolonies/minecolonies/pull/2323"},"self":{"href":"https://api.github.com/repos/Minecolonies/minecolonies/pulls/2323"}},"base":{"repo":{"default_branch":"version/1.12","watchers":84,"open_issues":152,"forks":72,"license":{"url":"https://api.github.com/licenses/gpl-3.0","spdx_id":"GPL-3.0","name":"GNU General Public License v3.0","key":"gpl-3.0"},"open_issues_count":152,"archived":false,"mirror_url":null,"forks_count":72,"has_pages":false,"has_wiki":true,"has_downloads":true,"has_projects":true,"has_issues":true,"language":"Java","watchers_count":84,"stargazers_count":84,"size":47495,"homepage":"http://minecolonies.com/","svn_url":"https://github.com/Minecolonies/minecolonies","clone_url":"https://github.com/Minecolonies/minecolonies.git","ssh_url":"git@github.com:Minecolonies/minecolonies.git","git_url":"git://github.com/Minecolonies/minecolonies.git","pushed_at":"2018-03-19T14:49:22Z","updated_at":"2018-03-19T14:38:28Z","created_at":"2016-08-13T12:45:38Z","deployments_url":"https://api.github.com/repos/Minecolonies/minecolonies/deployments","releases_url":"https://api.github.com/repos/Minecolonies/minecolonies/releases{/id}","labels_url":"https://api.github.com/repos/Minecolonies/minecolonies/labels{/name}","notifications_url":"https://api.github.com/repos/Minecolonies/minecolonies/notifications{?since,all,participating}","milestones_url":"https://api.github.com/repos/Minecolonies/minecolonies/milestones{/number}","pulls_url":"https://api.github.com/repos/Minecolonies/minecolonies/pulls{/number}","issues_url":"https://api.github.com/repos/Minecolonies/minecolonies/issues{/number}","downloads_url":"https://api.github.com/repos/Minecolonies/minecolonies/downloads","archive_url":"https://api.github.com/repos/Minecolonies/minecolonies/{archive_format}{/ref}","merges_url":"https://api.github.com/repos/Minecolonies/minecolonies/merges","compare_url":"https://api.github.com/repos/Minecolonies/minecolonies/compare/{base}...{head}","contents_url":"https://api.github.com/repos/Minecolonies/minecolonies/contents/{+path}","issue_comment_url":"https://api.github.com/repos/Minecolonies/minecolonies/issues/comments{/number}","comments_url":"https://api.github.com/repos/Minecolonies/minecolonies/comments{/number}","git_commits_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/commits{/sha}","commits_url":"https://api.github.com/repos/Minecolonies/minecolonies/commits{/sha}","subscription_url":"https://api.github.com/repos/Minecolonies/minecolonies/subscription","subscribers_url":"https://api.github.com/repos/Minecolonies/minecolonies/subscribers","contributors_url":"https://api.github.com/repos/Minecolonies/minecolonies/contributors","stargazers_url":"https://api.github.com/repos/Minecolonies/minecolonies/stargazers","languages_url":"https://api.github.com/repos/Minecolonies/minecolonies/languages","statuses_url":"https://api.github.com/repos/Minecolonies/minecolonies/statuses/{sha}","trees_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/trees{/sha}","git_refs_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/tags{/sha}","blobs_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/blobs{/sha}","tags_url":"https://api.github.com/repos/Minecolonies/minecolonies/tags","branches_url":"https://api.github.com/repos/Minecolonies/minecolonies/branches{/branch}","assignees_url":"https://api.github.com/repos/Minecolonies/minecolonies/assignees{/user}","events_url":"https://api.github.com/repos/Minecolonies/minecolonies/events","issue_events_url":"https://api.github.com/repos/Minecolonies/minecolonies/issues/events{/number}","hooks_url":"https://api.github.com/repos/Minecolonies/minecolonies/hooks","teams_url":"https://api.github.com/repos/Minecolonies/minecolonies/teams","collaborators_url":"https://api.github.com/repos/Minecolonies/minecolonies/collaborators{/collaborator}","keys_url":"https://api.github.com/repos/Minecolonies/minecolonies/keys{/key_id}","forks_url":"https://api.github.com/repos/Minecolonies/minecolonies/forks","url":"https://api.github.com/repos/Minecolonies/minecolonies","fork":false,"description":"Minecolonies minecraft mod","html_url":"https://github.com/Minecolonies/minecolonies","private":false,"owner":{"site_admin":false,"type":"Organization","received_events_url":"https://api.github.com/users/Minecolonies/received_events","events_url":"https://api.github.com/users/Minecolonies/events{/privacy}","repos_url":"https://api.github.com/users/Minecolonies/repos","organizations_url":"https://api.github.com/users/Minecolonies/orgs","subscriptions_url":"https://api.github.com/users/Minecolonies/subscriptions","starred_url":"https://api.github.com/users/Minecolonies/starred{/owner}{/repo}","gists_url":"https://api.github.com/users/Minecolonies/gists{/gist_id}","following_url":"https://api.github.com/users/Minecolonies/following{/other_user}","followers_url":"https://api.github.com/users/Minecolonies/followers","html_url":"https://github.com/Minecolonies","url":"https://api.github.com/users/Minecolonies","gravatar_id":"","avatar_url":"https://avatars3.githubusercontent.com/u/5167336?v=4","id":5167336,"login":"Minecolonies"},"full_name":"Minecolonies/minecolonies","name":"minecolonies","id":65616760},"user":{"site_admin":false,"type":"Organization","received_events_url":"https://api.github.com/users/Minecolonies/received_events","events_url":"https://api.github.com/users/Minecolonies/events{/privacy}","repos_url":"https://api.github.com/users/Minecolonies/repos","organizations_url":"https://api.github.com/users/Minecolonies/orgs","subscriptions_url":"https://api.github.com/users/Minecolonies/subscriptions","starred_url":"https://api.github.com/users/Minecolonies/starred{/owner}{/repo}","gists_url":"https://api.github.com/users/Minecolonies/gists{/gist_id}","following_url":"https://api.github.com/users/Minecolonies/following{/other_user}","followers_url":"https://api.github.com/users/Minecolonies/followers","html_url":"https://github.com/Minecolonies","url":"https://api.github.com/users/Minecolonies","gravatar_id":"","avatar_url":"https://avatars3.githubusercontent.com/u/5167336?v=4","id":5167336,"login":"Minecolonies"},"sha":"ef04eff615865ea1cc74c152ba07d05c148713fb","ref":"version/1.12","label":"Minecolonies:version/1.12"},"head":{"repo":{"default_branch":"version/1.12","watchers":84,"open_issues":152,"forks":72,"license":{"url":"https://api.github.com/licenses/gpl-3.0","spdx_id":"GPL-3.0","name":"GNU General Public License v3.0","key":"gpl-3.0"},"open_issues_count":152,"archived":false,"mirror_url":null,"forks_count":72,"has_pages":false,"has_wiki":true,"has_downloads":true,"has_projects":true,"has_issues":true,"language":"Java","watchers_count":84,"stargazers_count":84,"size":47495,"homepage":"http://minecolonies.com/","svn_url":"https://github.com/Minecolonies/minecolonies","clone_url":"https://github.com/Minecolonies/minecolonies.git","ssh_url":"git@github.com:Minecolonies/minecolonies.git","git_url":"git://github.com/Minecolonies/minecolonies.git","pushed_at":"2018-03-19T14:49:22Z","updated_at":"2018-03-19T14:38:28Z","created_at":"2016-08-13T12:45:38Z","deployments_url":"https://api.github.com/repos/Minecolonies/minecolonies/deployments","releases_url":"https://api.github.com/repos/Minecolonies/minecolonies/releases{/id}","labels_url":"https://api.github.com/repos/Minecolonies/minecolonies/labels{/name}","notifications_url":"https://api.github.com/repos/Minecolonies/minecolonies/notifications{?since,all,participating}","milestones_url":"https://api.github.com/repos/Minecolonies/minecolonies/milestones{/number}","pulls_url":"https://api.github.com/repos/Minecolonies/minecolonies/pulls{/number}","issues_url":"https://api.github.com/repos/Minecolonies/minecolonies/issues{/number}","downloads_url":"https://api.github.com/repos/Minecolonies/minecolonies/downloads","archive_url":"https://api.github.com/repos/Minecolonies/minecolonies/{archive_format}{/ref}","merges_url":"https://api.github.com/repos/Minecolonies/minecolonies/merges","compare_url":"https://api.github.com/repos/Minecolonies/minecolonies/compare/{base}...{head}","contents_url":"https://api.github.com/repos/Minecolonies/minecolonies/contents/{+path}","issue_comment_url":"https://api.github.com/repos/Minecolonies/minecolonies/issues/comments{/number}","comments_url":"https://api.github.com/repos/Minecolonies/minecolonies/comments{/number}","git_commits_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/commits{/sha}","commits_url":"https://api.github.com/repos/Minecolonies/minecolonies/commits{/sha}","subscription_url":"https://api.github.com/repos/Minecolonies/minecolonies/subscription","subscribers_url":"https://api.github.com/repos/Minecolonies/minecolonies/subscribers","contributors_url":"https://api.github.com/repos/Minecolonies/minecolonies/contributors","stargazers_url":"https://api.github.com/repos/Minecolonies/minecolonies/stargazers","languages_url":"https://api.github.com/repos/Minecolonies/minecolonies/languages","statuses_url":"https://api.github.com/repos/Minecolonies/minecolonies/statuses/{sha}","trees_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/trees{/sha}","git_refs_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/tags{/sha}","blobs_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/blobs{/sha}","tags_url":"https://api.github.com/repos/Minecolonies/minecolonies/tags","branches_url":"https://api.github.com/repos/Minecolonies/minecolonies/branches{/branch}","assignees_url":"https://api.github.com/repos/Minecolonies/minecolonies/assignees{/user}","events_url":"https://api.github.com/repos/Minecolonies/minecolonies/events","issue_events_url":"https://api.github.com/repos/Minecolonies/minecolonies/issues/events{/number}","hooks_url":"https://api.github.com/repos/Minecolonies/minecolonies/hooks","teams_url":"https://api.github.com/repos/Minecolonies/minecolonies/teams","collaborators_url":"https://api.github.com/repos/Minecolonies/minecolonies/collaborators{/collaborator}","keys_url":"https://api.github.com/repos/Minecolonies/minecolonies/keys{/key_id}","forks_url":"https://api.github.com/repos/Minecolonies/minecolonies/forks","url":"https://api.github.com/repos/Minecolonies/minecolonies","fork":false,"description":"Minecolonies minecraft mod","html_url":"https://github.com/Minecolonies/minecolonies","private":false,"owner":{"site_admin":false,"type":"Organization","received_events_url":"https://api.github.com/users/Minecolonies/received_events","events_url":"https://api.github.com/users/Minecolonies/events{/privacy}","repos_url":"https://api.github.com/users/Minecolonies/repos","organizations_url":"https://api.github.com/users/Minecolonies/orgs","subscriptions_url":"https://api.github.com/users/Minecolonies/subscriptions","starred_url":"https://api.github.com/users/Minecolonies/starred{/owner}{/repo}","gists_url":"https://api.github.com/users/Minecolonies/gists{/gist_id}","following_url":"https://api.github.com/users/Minecolonies/following{/other_user}","followers_url":"https://api.github.com/users/Minecolonies/followers","html_url":"https://github.com/Minecolonies","url":"https://api.github.com/users/Minecolonies","gravatar_id":"","avatar_url":"https://avatars3.githubusercontent.com/u/5167336?v=4","id":5167336,"login":"Minecolonies"},"full_name":"Minecolonies/minecolonies","name":"minecolonies","id":65616760},"user":{"site_admin":false,"type":"Organization","received_events_url":"https://api.github.com/users/Minecolonies/received_events","events_url":"https://api.github.com/users/Minecolonies/events{/privacy}","repos_url":"https://api.github.com/users/Minecolonies/repos","organizations_url":"https://api.github.com/users/Minecolonies/orgs","subscriptions_url":"https://api.github.com/users/Minecolonies/subscriptions","starred_url":"https://api.github.com/users/Minecolonies/starred{/owner}{/repo}","gists_url":"https://api.github.com/users/Minecolonies/gists{/gist_id}","following_url":"https://api.github.com/users/Minecolonies/following{/other_user}","followers_url":"https://api.github.com/users/Minecolonies/followers","html_url":"https://github.com/Minecolonies","url":"https://api.github.com/users/Minecolonies","gravatar_id":"","avatar_url":"https://avatars3.githubusercontent.com/u/5167336?v=4","id":5167336,"login":"Minecolonies"},"sha":"b8688bfb81738d8bd535cf3cf65270353d3e66a0","ref":"hotfix/chunkload","label":"Minecolonies:hotfix/chunkload"},"statuses_url":"https://api.github.com/repos/Minecolonies/minecolonies/statuses/b8688bfb81738d8bd535cf3cf65270353d3e66a0","comments_url":"https://api.github.com/repos/Minecolonies/minecolonies/issues/2323/comments","review_comment_url":"https://api.github.com/repos/Minecolonies/minecolonies/pulls/comments{/number}","review_comments_url":"https://api.github.com/repos/Minecolonies/minecolonies/pulls/2323/comments","commits_url":"https://api.github.com/repos/Minecolonies/minecolonies/pulls/2323/commits","milestone":null,"labels":[],"requested_teams":[],"requested_reviewers":[],"assignees":[],"assignee":null,"merge_commit_sha":"d2a4da787ce403427b840d14a44758cb44ae31c5","merged_at":"2018-03-19T12:25:00Z","closed_at":"2018-03-19T12:25:00Z","updated_at":"2018-03-19T12:30:47Z","created_at":"2018-03-19T12:23:46Z","body":"Closes #\r\nCloses #\r\nCloses #\r\n\r\n# Changes proposed in this pull request:\r\n-\r\n-\r\n-\r\n\r\nReview please\r\n","user":{"site_admin":false,"type":"User","received_events_url":"https://api.github.com/users/Raycoms/received_events","events_url":"https://api.github.com/users/Raycoms/events{/privacy}","repos_url":"https://api.github.com/users/Raycoms/repos","organizations_url":"https://api.github.com/users/Raycoms/orgs","subscriptions_url":"https://api.github.com/users/Raycoms/subscriptions","starred_url":"https://api.github.com/users/Raycoms/starred{/owner}{/repo}","gists_url":"https://api.github.com/users/Raycoms/gists{/gist_id}","following_url":"https://api.github.com/users/Raycoms/following{/other_user}","followers_url":"https://api.github.com/users/Raycoms/followers","html_url":"https://github.com/Raycoms","url":"https://api.github.com/users/Raycoms","gravatar_id":"","avatar_url":"https://avatars1.githubusercontent.com/u/6438347?v=4","id":6438347,"login":"Raycoms"},"title":"hotfix ChunkLoadStorage","locked":false,"state":"closed","number":2323,"issue_url":"https://api.github.com/repos/Minecolonies/minecolonies/issues/2323","patch_url":"https://github.com/Minecolonies/minecolonies/pull/2323.patch","diff_url":"https://github.com/Minecolonies/minecolonies/pull/2323.diff","html_url":"https://github.com/Minecolonies/minecolonies/pull/2323","id":175883415,"url":"https://api.github.com/repos/Minecolonies/minecolonies/pulls/2323"},{"author_association":"CONTRIBUTOR","_links":{"statuses":{"href":"https://api.github.com/repos/Minecolonies/minecolonies/statuses/1089a0092a8becd3962068c654a782e4a33b267f"},"commits":{"href":"https://api.github.com/repos/Minecolonies/minecolonies/pulls/2319/commits"},"review_comment":{"href":"https://api.github.com/repos/Minecolonies/minecolonies/pulls/comments{/number}"},"review_comments":{"href":"https://api.github.com/repos/Minecolonies/minecolonies/pulls/2319/comments"},"comments":{"href":"https://api.github.com/repos/Minecolonies/minecolonies/issues/2319/comments"},"issue":{"href":"https://api.github.com/repos/Minecolonies/minecolonies/issues/2319"},"html":{"href":"https://github.com/Minecolonies/minecolonies/pull/2319"},"self":{"href":"https://api.github.com/repos/Minecolonies/minecolonies/pulls/2319"}},"base":{"repo":{"default_branch":"version/1.12","watchers":84,"open_issues":152,"forks":72,"license":{"url":"https://api.github.com/licenses/gpl-3.0","spdx_id":"GPL-3.0","name":"GNU General Public License v3.0","key":"gpl-3.0"},"open_issues_count":152,"archived":false,"mirror_url":null,"forks_count":72,"has_pages":false,"has_wiki":true,"has_downloads":true,"has_projects":true,"has_issues":true,"language":"Java","watchers_count":84,"stargazers_count":84,"size":47495,"homepage":"http://minecolonies.com/","svn_url":"https://github.com/Minecolonies/minecolonies","clone_url":"https://github.com/Minecolonies/minecolonies.git","ssh_url":"git@github.com:Minecolonies/minecolonies.git","git_url":"git://github.com/Minecolonies/minecolonies.git","pushed_at":"2018-03-19T14:49:22Z","updated_at":"2018-03-19T14:38:28Z","created_at":"2016-08-13T12:45:38Z","deployments_url":"https://api.github.com/repos/Minecolonies/minecolonies/deployments","releases_url":"https://api.github.com/repos/Minecolonies/minecolonies/releases{/id}","labels_url":"https://api.github.com/repos/Minecolonies/minecolonies/labels{/name}","notifications_url":"https://api.github.com/repos/Minecolonies/minecolonies/notifications{?since,all,participating}","milestones_url":"https://api.github.com/repos/Minecolonies/minecolonies/milestones{/number}","pulls_url":"https://api.github.com/repos/Minecolonies/minecolonies/pulls{/number}","issues_url":"https://api.github.com/repos/Minecolonies/minecolonies/issues{/number}","downloads_url":"https://api.github.com/repos/Minecolonies/minecolonies/downloads","archive_url":"https://api.github.com/repos/Minecolonies/minecolonies/{archive_format}{/ref}","merges_url":"https://api.github.com/repos/Minecolonies/minecolonies/merges","compare_url":"https://api.github.com/repos/Minecolonies/minecolonies/compare/{base}...{head}","contents_url":"https://api.github.com/repos/Minecolonies/minecolonies/contents/{+path}","issue_comment_url":"https://api.github.com/repos/Minecolonies/minecolonies/issues/comments{/number}","comments_url":"https://api.github.com/repos/Minecolonies/minecolonies/comments{/number}","git_commits_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/commits{/sha}","commits_url":"https://api.github.com/repos/Minecolonies/minecolonies/commits{/sha}","subscription_url":"https://api.github.com/repos/Minecolonies/minecolonies/subscription","subscribers_url":"https://api.github.com/repos/Minecolonies/minecolonies/subscribers","contributors_url":"https://api.github.com/repos/Minecolonies/minecolonies/contributors","stargazers_url":"https://api.github.com/repos/Minecolonies/minecolonies/stargazers","languages_url":"https://api.github.com/repos/Minecolonies/minecolonies/languages","statuses_url":"https://api.github.com/repos/Minecolonies/minecolonies/statuses/{sha}","trees_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/trees{/sha}","git_refs_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/tags{/sha}","blobs_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/blobs{/sha}","tags_url":"https://api.github.com/repos/Minecolonies/minecolonies/tags","branches_url":"https://api.github.com/repos/Minecolonies/minecolonies/branches{/branch}","assignees_url":"https://api.github.com/repos/Minecolonies/minecolonies/assignees{/user}","events_url":"https://api.github.com/repos/Minecolonies/minecolonies/events","issue_events_url":"https://api.github.com/repos/Minecolonies/minecolonies/issues/events{/number}","hooks_url":"https://api.github.com/repos/Minecolonies/minecolonies/hooks","teams_url":"https://api.github.com/repos/Minecolonies/minecolonies/teams","collaborators_url":"https://api.github.com/repos/Minecolonies/minecolonies/collaborators{/collaborator}","keys_url":"https://api.github.com/repos/Minecolonies/minecolonies/keys{/key_id}","forks_url":"https://api.github.com/repos/Minecolonies/minecolonies/forks","url":"https://api.github.com/repos/Minecolonies/minecolonies","fork":false,"description":"Minecolonies minecraft mod","html_url":"https://github.com/Minecolonies/minecolonies","private":false,"owner":{"site_admin":false,"type":"Organization","received_events_url":"https://api.github.com/users/Minecolonies/received_events","events_url":"https://api.github.com/users/Minecolonies/events{/privacy}","repos_url":"https://api.github.com/users/Minecolonies/repos","organizations_url":"https://api.github.com/users/Minecolonies/orgs","subscriptions_url":"https://api.github.com/users/Minecolonies/subscriptions","starred_url":"https://api.github.com/users/Minecolonies/starred{/owner}{/repo}","gists_url":"https://api.github.com/users/Minecolonies/gists{/gist_id}","following_url":"https://api.github.com/users/Minecolonies/following{/other_user}","followers_url":"https://api.github.com/users/Minecolonies/followers","html_url":"https://github.com/Minecolonies","url":"https://api.github.com/users/Minecolonies","gravatar_id":"","avatar_url":"https://avatars3.githubusercontent.com/u/5167336?v=4","id":5167336,"login":"Minecolonies"},"full_name":"Minecolonies/minecolonies","name":"minecolonies","id":65616760},"user":{"site_admin":false,"type":"Organization","received_events_url":"https://api.github.com/users/Minecolonies/received_events","events_url":"https://api.github.com/users/Minecolonies/events{/privacy}","repos_url":"https://api.github.com/users/Minecolonies/repos","organizations_url":"https://api.github.com/users/Minecolonies/orgs","subscriptions_url":"https://api.github.com/users/Minecolonies/subscriptions","starred_url":"https://api.github.com/users/Minecolonies/starred{/owner}{/repo}","gists_url":"https://api.github.com/users/Minecolonies/gists{/gist_id}","following_url":"https://api.github.com/users/Minecolonies/following{/other_user}","followers_url":"https://api.github.com/users/Minecolonies/followers","html_url":"https://github.com/Minecolonies","url":"https://api.github.com/users/Minecolonies","gravatar_id":"","avatar_url":"https://avatars3.githubusercontent.com/u/5167336?v=4","id":5167336,"login":"Minecolonies"},"sha":"c90ad4608a602d5c6ca48d4ab4481d51be486b8d","ref":"version/1.12","label":"Minecolonies:version/1.12"},"head":{"repo":{"default_branch":"version/1.12","watchers":84,"open_issues":152,"forks":72,"license":{"url":"https://api.github.com/licenses/gpl-3.0","spdx_id":"GPL-3.0","name":"GNU General Public License v3.0","key":"gpl-3.0"},"open_issues_count":152,"archived":false,"mirror_url":null,"forks_count":72,"has_pages":false,"has_wiki":true,"has_downloads":true,"has_projects":true,"has_issues":true,"language":"Java","watchers_count":84,"stargazers_count":84,"size":47495,"homepage":"http://minecolonies.com/","svn_url":"https://github.com/Minecolonies/minecolonies","clone_url":"https://github.com/Minecolonies/minecolonies.git","ssh_url":"git@github.com:Minecolonies/minecolonies.git","git_url":"git://github.com/Minecolonies/minecolonies.git","pushed_at":"2018-03-19T14:49:22Z","updated_at":"2018-03-19T14:38:28Z","created_at":"2016-08-13T12:45:38Z","deployments_url":"https://api.github.com/repos/Minecolonies/minecolonies/deployments","releases_url":"https://api.github.com/repos/Minecolonies/minecolonies/releases{/id}","labels_url":"https://api.github.com/repos/Minecolonies/minecolonies/labels{/name}","notifications_url":"https://api.github.com/repos/Minecolonies/minecolonies/notifications{?since,all,participating}","milestones_url":"https://api.github.com/repos/Minecolonies/minecolonies/milestones{/number}","pulls_url":"https://api.github.com/repos/Minecolonies/minecolonies/pulls{/number}","issues_url":"https://api.github.com/repos/Minecolonies/minecolonies/issues{/number}","downloads_url":"https://api.github.com/repos/Minecolonies/minecolonies/downloads","archive_url":"https://api.github.com/repos/Minecolonies/minecolonies/{archive_format}{/ref}","merges_url":"https://api.github.com/repos/Minecolonies/minecolonies/merges","compare_url":"https://api.github.com/repos/Minecolonies/minecolonies/compare/{base}...{head}","contents_url":"https://api.github.com/repos/Minecolonies/minecolonies/contents/{+path}","issue_comment_url":"https://api.github.com/repos/Minecolonies/minecolonies/issues/comments{/number}","comments_url":"https://api.github.com/repos/Minecolonies/minecolonies/comments{/number}","git_commits_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/commits{/sha}","commits_url":"https://api.github.com/repos/Minecolonies/minecolonies/commits{/sha}","subscription_url":"https://api.github.com/repos/Minecolonies/minecolonies/subscription","subscribers_url":"https://api.github.com/repos/Minecolonies/minecolonies/subscribers","contributors_url":"https://api.github.com/repos/Minecolonies/minecolonies/contributors","stargazers_url":"https://api.github.com/repos/Minecolonies/minecolonies/stargazers","languages_url":"https://api.github.com/repos/Minecolonies/minecolonies/languages","statuses_url":"https://api.github.com/repos/Minecolonies/minecolonies/statuses/{sha}","trees_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/trees{/sha}","git_refs_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/tags{/sha}","blobs_url":"https://api.github.com/repos/Minecolonies/minecolonies/git/blobs{/sha}","tags_url":"https://api.github.com/repos/Minecolonies/minecolonies/tags","branches_url":"https://api.github.com/repos/Minecolonies/minecolonies/branches{/branch}","assignees_url":"https://api.github.com/repos/Minecolonies/minecolonies/assignees{/user}","events_url":"https://api.github.com/repos/Minecolonies/minecolonies/events","issue_events_url":"https://api.github.com/repos/Minecolonies/minecolonies/issues/events{/number}","hooks_url":"https://api.github.com/repos/Minecolonies/minecolonies/hooks","teams_url":"https://api.github.com/repos/Minecolonies/minecolonies/teams","collaborators_url":"https://api.github.com/repos/Minecolonies/minecolonies/collaborators{/collaborator}","keys_url":"https://api.github.com/repos/Minecolonies/minecolonies/keys{/key_id}","forks_url":"https://api.github.com/repos/Minecolonies/minecolonies/forks","url":"https://api.github.com/repos/Minecolonies/minecolonies","fork":false,"description":"Minecolonies minecraft mod","html_url":"https://github.com/Minecolonies/minecolonies","private":false,"owner":{"site_admin":false,"type":"Organization","received_events_url":"https://api.github.com/users/Minecolonies/received_events","events_url":"https://api.github.com/users/Minecolonies/events{/privacy}","repos_url":"https://api.github.com/users/Minecolonies/repos","organizations_url":"https://api.github.com/users/Minecolonies/orgs","subscriptions_url":"https://api.github.com/users/Minecolonies/subscriptions","starred_url":"https://api.github.com/users/Minecolonies/starred{/owner}{/repo}","gists_url":"https://api.github.com/users/Minecolonies/gists{/gist_id}","following_url":"https://api.github.com/users/Minecolonies/following{/other_user}","followers_url":"https://api.github.com/users/Minecolonies/followers","html_url":"https://github.com/Minecolonies","url":"https://api.github.com/users/Minecolonies","gravatar_id":"","avatar_url":"https://avatars3.githubusercontent.com/u/5167336?v=4","id":5167336,"login":"Minecolonies"},"full_name":"Minecolonies/minecolonies","name":"minecolonies","id":65616760},"user":{"site_admin":false,"type":"Organization","received_events_url":"https://api.github.com/users/Minecolonies/received_events","events_url":"https://api.github.com/users/Minecolonies/events{/privacy}","repos_url":"https://api.github.com/users/Minecolonies/repos","organizations_url":"https://api.github.com/users/Minecolonies/orgs","subscriptions_url":"https://api.github.com/users/Minecolonies/subscriptions","starred_url":"https://api.github.com/users/Minecolonies/starred{/owner}{/repo}","gists_url":"https://api.github.com/users/Minecolonies/gists{/gist_id}","following_url":"https://api.github.com/users/Minecolonies/following{/other_user}","followers_url":"https://api.github.com/users/Minecolonies/followers","html_url":"https://github.com/Minecolonies","url":"https://api.github.com/users/Minecolonies","gravatar_id":"","avatar_url":"https://avatars3.githubusercontent.com/u/5167336?v=4","id":5167336,"login":"Minecolonies"},"sha":"1089a0092a8becd3962068c654a782e4a33b267f","ref":"hotfix/cnb","label":"Minecolonies:hotfix/cnb"},"statuses_url":"https://api.github.com/repos/Minecolonies/minecolonies/statuses/1089a0092a8becd3962068c654a782e4a33b267f","comments_url":"https://api.github.com/repos/Minecolonies/minecolonies/issues/2319/comments","review_comment_url":"https://api.github.com/repos/Minecolonies/minecolonies/pulls/comments{/number}","review_comments_url":"https://api.github.com/repos/Minecolonies/minecolonies/pulls/2319/comments","commits_url":"https://api.github.com/repos/Minecolonies/minecolonies/pulls/2319/commits","milestone":null,"labels":[],"requested_teams":[],"requested_reviewers":[],"assignees":[],"assignee":null,"merge_commit_sha":"50d260cc25eb5be5b1c34573bfffcf4820cc405a","merged_at":"2018-03-16T23:59:22Z","closed_at":"2018-03-16T23:59:22Z","updated_at":"2018-03-16T23:59:25Z","created_at":"2018-03-16T13:29:15Z","body":"\r\n\r\n# Changes proposed in this pull request:\r\n- Fixes NPE with chisel and bits\r\n- Fixes bug where too many items get sent to the worker.\r\n\r\nReview please\r\n","user":{"site_admin":false,"type":"User","received_events_url":"https://api.github.com/users/Raycoms/received_events","events_url":"https://api.github.com/users/Raycoms/events{/privacy}","repos_url":"https://api.github.com/users/Raycoms/repos","organizations_url":"https://api.github.com/users/Raycoms/orgs","subscriptions_url":"https://api.github.com/users/Raycoms/subscriptions","starred_url":"https://api.github.com/users/Raycoms/starred{/owner}{/repo}","gists_url":"https://api.github.com/users/Raycoms/gists{/gist_id}","following_url":"https://api.github.com/users/Raycoms/following{/other_user}","followers_url":"https://api.github.com/users/Raycoms/followers","html_url":"https://github.com/Raycoms","url":"https://api.github.com/users/Raycoms","gravatar_id":"","avatar_url":"https://avatars1.githubusercontent.com/u/6438347?v=4","id":6438347,"login":"Raycoms"},"title":"Hotfix/cnb","locked":false,"state":"closed","number":2319,"issue_url":"https://api.github.com/repos/Minecolonies/minecolonies/issues/2319","patch_url":"https://github.com/Minecolonies/minecolonies/pull/2319.patch","diff_url":"https://github.com/Minecolonies/minecolonies/pull/2319.diff","html_url":"https://github.com/Minecolonies/minecolonies/pull/2319","id":175532885,"url":"https://api.github.com/repos/Minecolonies/minecolonies/pulls/2319"}],"platform":"github","type":"development","tags":["utopian-io","gaming","technology","programming","education"],"image":["https://i.imgur.com/9q11zTm.png","https://i.imgur.com/9EU7Za3.png","https://i.imgur.com/sMEWYeq.png","https://i.imgur.com/F6KLSB2.png","https://i.imgur.com/BrBcXJC.png","https://i.imgur.com/EBaxpkt.png","https://i.imgur.com/ju6eset.png","https://i.imgur.com/n3Jw9Ij.png","https://i.imgur.com/JLyoUfT.png","https://i.imgur.com/ytFjNb7.png","https://i.imgur.com/VBlcb2d.png","https://i.imgur.com/yPKeTXq.png"],"links":["https://utopian.io/utopian-io/@raycoms/minecolonies-and-hotfixes","https://github.com/Minecolonies/minecolonies/pull/2318","https://www.minnowbooster.com/referral/49434"],"moderator":{"account":"vladimir-simovic","time":"2018-03-19T19:32:55.703Z","reviewed":true,"pending":false,"flagged":false},"questions":[{"question":"Is the project description formal?","answers":[{"value":"Yes it’s straight to the point","selected":true,"score":10},{"value":"Need more description ","selected":false,"score":5},{"value":"Not too descriptive","selected":false,"score":0}],"selected":0},{"question":"Is the language / grammar correct?","answers":[{"value":"Yes","selected":true,"score":20},{"value":"A few mistakes","selected":false,"score":10},{"value":"It's pretty bad","selected":false,"score":0}],"selected":0},{"question":"Was the template followed?","answers":[{"value":"Yes","selected":true,"score":10},{"value":"Partially","selected":false,"score":5},{"value":"No","selected":false,"score":0}],"selected":0},{"question":"How do you rate the amount of work?","answers":[{"value":"Very High","selected":false,"score":20},{"value":"High","selected":true,"score":16},{"value":"Medium","selected":false,"score":12},{"value":"Low","selected":false,"score":7},{"value":"Very Low","selected":false,"score":3}],"selected":1},{"question":"How do you rate the impact on the Project?","answers":[{"value":"Very High","selected":false,"score":20},{"value":"High","selected":false,"score":16},{"value":"Medium","selected":true,"score":12},{"value":"Low","selected":false,"score":7},{"value":"Very Low","selected":false,"score":3}],"selected":2}],"score":75}"
created2018-03-19 15:15:18
last_update2018-03-19 19:32:57
depth0
children9
last_payout2018-03-26 15:15:18
cashout_time1969-12-31 23:59:59
total_payout_value102.150 HBD
curator_payout_value22.240 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4,063
author_reputation115,046,969,395,583
root_title"Minecolonies & Hotfixes"
beneficiaries
0.
accountutopian.pay
weight2,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,361,700
net_rshares47,754,418,924,492
author_curate_reward""
vote details (66)
@abdulhanankhan ·
I Like your post.
Please follow me and upvote my post.
πŸ‘  ,
properties (23)
authorabdulhanankhan
permlinkre-raycoms-minecolonies-and-hotfixes-20180319t153831507z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-19 15:38:00
last_update2018-03-19 15:38:00
depth1
children1
last_payout2018-03-26 15:38:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length54
author_reputation-4,768,968,052
root_title"Minecolonies & Hotfixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,365,757
net_rshares1,157,508,996
author_curate_reward""
vote details (2)
@dingo777 ·
ok do the same haha
properties (22)
authordingo777
permlinkre-abdulhanankhan-re-raycoms-minecolonies-and-hotfixes-20180319t154018495z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-19 15:40:18
last_update2018-03-19 15:40:18
depth2
children0
last_payout2018-03-26 15:40:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation856,115,089
root_title"Minecolonies & Hotfixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,366,142
net_rshares0
@alanman ·
$0.11
Nice! Thanks for the fixes.  I know my wife will be pleased with the lower-level ground fix.  Her solution had been to beat her farmers, sometimes to death! :P

Knowing that they were stuck in the dirt (because they thought they were sunk into the ground? This a psychotropic bug??) helps ease the burden since we now know it's not lazy farmers (just high farmers...).

On the matter of stuckedness though, I have seen citizens periodically get stuck for a moment where the ground goes up in elevation.  I guess they need to repath at that point? Not sure if it is related to the ground level bug.
πŸ‘  
properties (23)
authoralanman
permlinkre-raycoms-minecolonies-and-hotfixes-20180319t170751013z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-19 17:07:51
last_update2018-03-19 17:07:51
depth1
children1
last_payout2018-03-26 17:07:51
cashout_time1969-12-31 23:59:59
total_payout_value0.082 HBD
curator_payout_value0.023 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length597
author_reputation3,889,830,558,864
root_title"Minecolonies & Hotfixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,381,302
net_rshares32,584,759,268
author_curate_reward""
vote details (1)
@raycoms ·
$0.03
Glad to hear that, and yes when they get stuck at elevated ground they have to repath.
That happens because we let them repath slowly to avoid a too big load on the server,  atm 90% of the mods load is pathing already
πŸ‘  
properties (23)
authorraycoms
permlinkre-alanman-re-raycoms-minecolonies-and-hotfixes-20180319t173844313z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-19 17:38:48
last_update2018-03-19 17:38:48
depth2
children0
last_payout2018-03-26 17:38:48
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length217
author_reputation115,046,969,395,583
root_title"Minecolonies & Hotfixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,386,301
net_rshares9,315,936,895
author_curate_reward""
vote details (1)
@ilhamdhia ·
I have not understood about this, obviously I like your post master @raycoms lord hope will help me, let me can develop like master, thank you
properties (22)
authorilhamdhia
permlinkre-raycoms-minecolonies-and-hotfixes-20180319t153204311z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["raycoms"],"app":"steemit/0.1"}
created2018-03-19 15:32:09
last_update2018-03-19 15:32:09
depth1
children0
last_payout2018-03-26 15:32:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length142
author_reputation183,745,226,160
root_title"Minecolonies & Hotfixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,364,778
net_rshares0
@kennervnzla ·
very good
properties (22)
authorkennervnzla
permlinkre-raycoms-minecolonies-and-hotfixes-20180319t152359850z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-03-19 15:24:03
last_update2018-03-19 15:24:03
depth1
children0
last_payout2018-03-26 15:24:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation318,269,512
root_title"Minecolonies & Hotfixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,363,277
net_rshares0
@roxso ·
nice
properties (22)
authorroxso
permlinkre-raycoms-minecolonies-and-hotfixes-20180320t122243909z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-03-20 12:22:51
last_update2018-03-20 12:22:51
depth1
children0
last_payout2018-03-27 12:22:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation191,401,243,677
root_title"Minecolonies & Hotfixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,535,283
net_rshares0
@utopian-io ·
### Hey @raycoms I am @utopian-io. I have just upvoted you!
#### Achievements
- You have less than 500 followers. Just gave you a gift to help you succeed!
- Seems like you contribute quite often. AMAZING!
#### Community-Driven Witness!
I am the first and only Steem Community-Driven Witness. <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER!
- <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness With SteemConnect</a>
- <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness with SteemConnect</a>
- Or vote/proxy on <a href="https://steemit.com/~witnesses">Steemit Witnesses</a>

[![mooncryption-utopian-witness-gif](https://steemitimages.com/DQmYPUuQRptAqNBCQRwQjKWAqWU3zJkL3RXVUtEKVury8up/mooncryption-s-utopian-io-witness-gif.gif)](https://steemit.com/~witnesses)

**Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
properties (22)
authorutopian-io
permlinkre-raycoms-minecolonies-and-hotfixes-20180320t005551483z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-03-20 00:55:51
last_update2018-03-20 00:55:51
depth1
children0
last_payout2018-03-27 00:55:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,083
author_reputation152,955,367,999,756
root_title"Minecolonies & Hotfixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,444,094
net_rshares0
@vladimir-simovic ·
Thank you for the contribution. It has been approved.

You can contact us on [Discord](https://discord.gg/uTyJkNm).
**[[utopian-moderator]](https://utopian.io/moderators)**
properties (22)
authorvladimir-simovic
permlinkre-raycoms-minecolonies-and-hotfixes-20180319t193305062z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-03-19 19:33:06
last_update2018-03-19 19:33:06
depth1
children0
last_payout2018-03-26 19:33:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation56,930,790,558,862
root_title"Minecolonies & Hotfixes"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,403,146
net_rshares0