<!-- 
RSS generated by JIRA (9.12.2#9120002-sha1:301bf498dd45d800842af0b84230f1bb58606c13) at Sun Jan 12 12:14:44 UTC 2025

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>Mojang Studios Jira</title>
    <link>https://bugs.mojang.com</link>
    <description>This file is an XML representation of an issue</description>
    <language>en</language>    <build-info>
        <version>9.12.2</version>
        <build-number>9120002</build-number>
        <build-date>10-01-2024</build-date>
    </build-info>


<item>
            <title>[MC-7508] lighting error due to Chunk.heightMap ignoring block at the top level of an ExtendedBlockStorage instance (off by 1 error)</title>
                <link>https://bugs.mojang.com/browse/MC-7508</link>
                <project id="10400" key="MC">Minecraft: Java Edition</project>
                    <description>&lt;p&gt;&lt;b&gt;REPRODUCE&lt;/b&gt;&lt;br/&gt;
1: load the attached world (mirrored at &lt;a href=&quot;http://www.mediafire.com/?8o5hj55pwjolwos&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://www.mediafire.com/?8o5hj55pwjolwos&lt;/a&gt; )&lt;br/&gt;
2: walk under the platform. Watch the shadow disappear. This only happens with platforms at level 15, 31, 47, 63, etc, for the reasons described below&lt;/p&gt;

&lt;p&gt;&lt;b&gt;CONFIRM FROM SCRATCH&lt;/b&gt;&lt;br/&gt;
1: start a flat world.&lt;br/&gt;
2: Build a large 1 block thick platform at y level 31 (or 15 or 63)&lt;br/&gt;
3: exit.&lt;br/&gt;
4: Load world again. walk on the ground under the platform. Shadow from the platform disappears as the lighting is updated based on the heightmap (which does not see the platform)&lt;/p&gt;

&lt;p&gt;&lt;b&gt;THE CAUSE&lt;/b&gt;&lt;br/&gt;
Chunk.java has an error in the generation of heightMap (an int&lt;span class=&quot;error&quot;&gt;&amp;#91;256&amp;#93;&lt;/span&gt; ) in the method public void generateHeightMap().  &lt;/p&gt;

&lt;p&gt;int var1 = this.getTopFilledSegment();&lt;br/&gt;
returns the highest ExtendedBlockStorage with a block in it.&lt;/p&gt;

&lt;p&gt;inside the x and z loops (from 0 to 16), for each x-z coordinate the method establishes the highest block with opacity &amp;gt; 0.&lt;/p&gt;

&lt;p&gt;int var4 = var1 + 16 - 1;&lt;br/&gt;
starts us at the top of the ExtendedBlockStorage returned earlier, then it loops down to find the first block with opacity &amp;gt; 0.&lt;/p&gt;

&lt;p&gt;The problem is an off by one error. The blocks that are checked are retrieved like so:  Block var5 = this.func_150810_a(var2, var4 - 1, var3);&lt;/p&gt;

&lt;p&gt;the &quot;var4 - 1&quot; is the problem. The top block is ignored / never checked.&lt;/p&gt;

&lt;p&gt;If the top two blocks are solid, the heightmap is set to the height of the lower one. If the top block is solid, then the next four are air then the next is solid, the height map is set to 5 below the top block.&lt;/p&gt;

&lt;p&gt;The method either needs to start checking at this.getTopFilledSegment() + 16 instead of this.getTopFilledSegment() + 16 - 1, or inside the loop check  this.func_150810_a(var2, var4, var3) instead of  this.func_150810_a(var2, var4 - 1, var3)&lt;/p&gt;

&lt;p&gt;This bug (and related) is likely the cause of some of the lighting glitches seen. See attached image for a visual representation of this report. Also, all variables, classes and method names are from MCP. I of course do not have access to your internal codebase. Hopefully you can translate.&lt;/p&gt;

&lt;p&gt;This bug has been around sine 1.8 &lt;b&gt;BETA&lt;/b&gt;  Please kill it &lt;img class=&quot;emoticon&quot; src=&quot;https://bugs.mojang.com/images/icons/emoticons/sad.png&quot; height=&quot;16&quot; width=&quot;16&quot; align=&quot;absmiddle&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;/p&gt;

&lt;p&gt;IMAGES ATTACHED:&lt;br/&gt;
visual explanation of bug, and shot of bug in action&lt;/p&gt;</description>
                <environment>java 7 64 bit, win server 2008 r2</environment>
        <key id="20304">MC-7508</key>
            <summary>lighting error due to Chunk.heightMap ignoring block at the top level of an ExtendedBlockStorage instance (off by 1 error)</summary>
                <type id="1" iconUrl="https://bugs.mojang.com/secure/viewavatar?size=xsmall&amp;avatarId=18903&amp;avatarType=issuetype">Bug</type>
                                    <status id="5" iconUrl="https://bugs.mojang.com/images/icons/statuses/resolved.png" description="A resolution has been taken, and it is awaiting verification by reporter. From here issues are either reopened, or are closed.">Resolved</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="1">Fixed</resolution>
                                        <assignee username="searge">[Mojang] Searge (Michael Stoyke)</assignee>
                                    <reporter username="mamiyaotaru">Jason Winzenried</reporter>
                        <labels>
                            <label>block</label>
                            <label>rendering</label>
                            <label>world</label>
                    </labels>
                <created>Tue, 15 Jan 2013 04:03:24 +0100</created>
                <updated>Sun, 12 Jun 2016 02:20:43 +0200</updated>
                            <resolved>Fri, 18 Jul 2014 12:06:00 +0200</resolved>
                                    <version>Minecraft 1.4.6</version>
                    <version>Minecraft 1.4.7</version>
                    <version>Snapshot 13w02b</version>
                    <version>Snapshot 13w05b</version>
                    <version>Minecraft 1.5</version>
                    <version>Minecraft 1.5.1</version>
                    <version>Minecraft 1.5.2</version>
                    <version>Minecraft 1.6</version>
                    <version>Minecraft 1.6.1</version>
                    <version>Minecraft 1.6.4</version>
                    <version>Minecraft 13w38c</version>
                    <version>Minecraft 1.7.5</version>
                    <version>Minecraft 14w11b</version>
                    <version>Minecraft 14w26c</version>
                    <version>Minecraft 1.7.10</version>
                    <version>Minecraft 14w28b</version>
                    <version>Minecraft 14w29a</version>
                                    <fixVersion>Minecraft 14w30a</fixVersion>
                                                        <votes>34</votes>
                                    <watches>11</watches>
                                                                            <comments>
                            <comment id="184807" author="kazblox" created="Wed, 6 Aug 2014 01:14:49 +0200"  >&lt;p&gt;Parts of it were unfixed due to certain trees not generating... &lt;a href=&quot;https://twitter.com/SeargeDP/status/492316809115086848&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://twitter.com/SeargeDP/status/492316809115086848&lt;/a&gt; I can confirm that it&apos;s back, but shows up obscurely.&lt;/p&gt;

&lt;p&gt;JIRA should have a &quot;Partially Fixed&quot; field for these kinds of bugs.&lt;/p&gt;</comment>
                            <comment id="178949" author="marlor" created="Thu, 24 Jul 2014 14:28:19 +0200"  >&lt;p&gt;It is not fixed, look at &lt;a href=&quot;https://www.youtube.com/watch?v=VAht6IisnQw&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://www.youtube.com/watch?v=VAht6IisnQw&lt;/a&gt; and &lt;a href=&quot;https://bugs.mojang.com/browse/MC-63346&quot; title=&quot;lighting error at heights Multiples of 16&quot; class=&quot;issue-link&quot; data-issue-key=&quot;MC-63346&quot;&gt;&lt;del&gt;MC-63346&lt;/del&gt;&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="178919" author="JIRAUSER71590" created="Thu, 24 Jul 2014 13:56:22 +0200"  >&lt;p&gt;it is fixed in the snapshot of 1.8.... so it&apos;s fixed in 1.8....&lt;/p&gt;</comment>
                            <comment id="178913" author="marlor" created="Thu, 24 Jul 2014 13:43:03 +0200"  >&lt;p&gt;Thank you, and can you please test the bug and set it to confirmed?&lt;br/&gt;
So we maybe can get it fixed before 1.8&lt;/p&gt;</comment>
                            <comment id="178830" author="kumasasa" created="Thu, 24 Jul 2014 08:14:50 +0200"  >&lt;p&gt;Ok.&lt;/p&gt;</comment>
                            <comment id="178764" author="marlor" created="Thu, 24 Jul 2014 04:16:07 +0200"  >&lt;p&gt;&lt;a href=&quot;https://bugs.mojang.com/browse/MC-63346&quot; title=&quot;lighting error at heights Multiples of 16&quot; class=&quot;issue-link&quot; data-issue-key=&quot;MC-63346&quot;&gt;&lt;del&gt;MC-63346&lt;/del&gt;&lt;/a&gt; is the new one&lt;/p&gt;</comment>
                            <comment id="178631" author="kumasasa" created="Wed, 23 Jul 2014 22:55:12 +0200"  >&lt;p&gt;Please make a new ticket.&lt;/p&gt;</comment>
                            <comment id="178629" author="mkelliher" created="Wed, 23 Jul 2014 22:52:58 +0200"  >&lt;p&gt;Can a mod please clarify: should this be re-opened or a new ticket submitted for the newly introduced bug that supposedly fixed this one?&lt;/p&gt;</comment>
                            <comment id="178277" author="marlor" created="Wed, 23 Jul 2014 17:03:16 +0200"  >&lt;p&gt;The fix flips the Bug to the upper Side.&lt;br/&gt;
And introduces a new one were the blocks on the ground wrongly light up and stays lit up:&lt;br/&gt;
&lt;a href=&quot;https://www.youtube.com/watch?v=VAht6IisnQw&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://www.youtube.com/watch?v=VAht6IisnQw&lt;/a&gt;&lt;br/&gt;
Version 14w30a and 14w30b&lt;/p&gt;</comment>
                            <comment id="174832" author="mkelliher" created="Wed, 16 Jul 2014 18:32:55 +0200"  >&lt;p&gt;14w29a is affected too. Can a mod please update the affected versions?&lt;/p&gt;</comment>
                            <comment id="173265" author="mkelliher" created="Fri, 11 Jul 2014 04:22:16 +0200"  >&lt;p&gt;Went back and confirmed with 14w28a as well.&lt;/p&gt;</comment>
                            <comment id="173262" author="mkelliher" created="Fri, 11 Jul 2014 04:04:21 +0200"  >&lt;p&gt;Confirmed this is still happening with 14w28b using &quot;CONFIRM FROM SCRATCH&quot; instructions. I used flat terrain and built 3 platforms - one at Y=30, Y=31, and Y=32. Platform built at Y level 31, when re-loaded, has the shadow disappear when walking over top of the shadow on the ground. (Shadow stays for platforms at Y=30 and Y=32)&lt;/p&gt;</comment>
                            <comment id="173026" author="marlor" created="Thu, 10 Jul 2014 18:36:40 +0200"  >&lt;p&gt;Thank you.&lt;br/&gt;
14w28b is affected too.&lt;/p&gt;</comment>
                            <comment id="168867" author="kumasasa" created="Sat, 28 Jun 2014 11:29:26 +0200"  >&lt;p&gt;Derp. Will test later.&lt;/p&gt;</comment>
                            <comment id="168855" author="marlor" created="Sat, 28 Jun 2014 11:00:24 +0200"  >&lt;p&gt;Follow the &quot;REPRODUCE:&quot; or &quot;CONFIRM FROM SCRATCH:&quot;&lt;/p&gt;</comment>
                            <comment id="168854" author="kumasasa" created="Sat, 28 Jun 2014 10:53:06 +0200"  >&lt;p&gt;How to test ?&lt;/p&gt;</comment>
                            <comment id="168835" author="marlor" created="Sat, 28 Jun 2014 09:22:19 +0200"  >&lt;p&gt;Still happening on Launcher version 1.4.4 and MC Version 1.7.10 + 14w26c.&lt;br/&gt;
Could a Mod test it and set the Confirmation Status?&lt;/p&gt;</comment>
                            <comment id="160037" author="jar_" created="Sun, 25 May 2014 09:38:09 +0200"  >&lt;p&gt;Is this still a concern in the &lt;em&gt;current Minecraft version&lt;/em&gt; &lt;b&gt;14w21b&lt;/b&gt; / Launcher version &lt;b&gt;1.4.4&lt;/b&gt; or later? If so, please &lt;em&gt;update the affected versions&lt;/em&gt; in order to best aid Mojang ensuring bugs are still valid in the latest releases/pre-releases.&lt;/p&gt;</comment>
                            <comment id="148284" author="ezekielelin" created="Thu, 20 Mar 2014 23:31:23 +0100"  >&lt;p&gt;Jason, actually that wording has since been removed, it was incorrect. We now use &lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;This ticket is &lt;em&gt;incomplete&lt;/em&gt; without the requested information, no response has been received within a reasonable time and we are assuming the issue has been resolved. If you are still experiencing this issue, we can reopen it at your request.&lt;br/&gt;
Please review the &lt;a href=&quot;http://help.mojang.com/customer/portal/articles/801354-writing-helpful-bug-reports-for-minecraft&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;guidelines&lt;/a&gt; before reporting issues.&lt;/p&gt;&lt;/blockquote&gt;</comment>
                            <comment id="148282" author="talven81" created="Thu, 20 Mar 2014 23:21:26 +0100"  >&lt;p&gt;The reason that is posted is in many cases a reply after the ticket has been closed may not be noticed if a moderator is not actively watching the queue. However I was, and your ticket was reopened.&lt;/p&gt;</comment>
                            <comment id="148281" author="mamiyaotaru" created="Thu, 20 Mar 2014 23:17:28 +0100"  >&lt;p&gt;of course, I was far to broad in my usage of &quot;you&quot;.  Of course you can&apos;t do anything about it.  I wish someone would though!  So yeah I slacked off on checking (I&apos;ve been keeping it up for a while, as you will notice from the post date + list of affected versions).  1.7.2 to 1.7.5 wasn&apos;t really a large enough change to prompt me to check again.  I&apos;ve done so now, and with the latest snapshot, and it is still there.&lt;/p&gt;

&lt;p&gt;I do wish you would get your story straight between &quot;Should your issue return please submit a new complete ticket with all available information.&quot; and &quot;Please do not clone existing tickets&quot;&lt;/p&gt;</comment>
                            <comment id="148278" author="talven81" created="Thu, 20 Mar 2014 23:01:04 +0100"  >&lt;p&gt;I&apos;m sorry updating affected versions once every few months to ensure the bug is known to exist in current versions is too much effort, however you reported the bug and I can&apos;t say that an additional 15 seconds of your time every few months is too much to ask. Frequently bug reports go stale because the user abandons them, or the issue is fixed by another patch and the user abandons the ticket without informing us it has been fixed. Updating the affected versions ensures the ticket stays alive.&lt;/p&gt;

&lt;p&gt;We are moderators not Mojang employees, we cannot change the code.&lt;/p&gt;</comment>
                            <comment id="148276" author="mamiyaotaru" created="Thu, 20 Mar 2014 22:28:15 +0100"  >&lt;p&gt;yes it&apos;s still an issue.  How can you expect me to check this report every few months when none of you** can take a second to change two characters in the codebase and fix it?  How much effort am I supposed to expend on this?&lt;/p&gt;

&lt;p&gt;**I unfairly directed this ire towards the moderators.  Sorry!&lt;/p&gt;</comment>
                            <comment id="130528" author="ezekielelin" created="Sat, 11 Jan 2014 16:59:55 +0100"  >&lt;p&gt;This ticket is &lt;em&gt;incomplete&lt;/em&gt; without the requested information, no response has been received within a reasonable time and we are assuming the issue has been resolved. Should your issue return please submit a new &lt;b&gt;complete&lt;/b&gt; ticket with all available information.&lt;br/&gt;
Please review the &lt;a href=&quot;http://help.mojang.com/customer/portal/articles/801354-writing-helpful-bug-reports-for-minecraft&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;guidelines&lt;/a&gt; before reporting issues.&lt;/p&gt;</comment>
                            <comment id="121455" author="talven81" created="Tue, 26 Nov 2013 21:53:25 +0100"  >&lt;p&gt;Is this still a concern in the &lt;em&gt;current Minecraft version&lt;/em&gt; &lt;b&gt;1.7.2&lt;/b&gt; / Launcher version &lt;b&gt;1.3.4&lt;/b&gt; ? If so, please &lt;em&gt;update the affected versions&lt;/em&gt; in order to best aid Mojang ensuring bugs are still valid in the latest releases/pre-releases.&lt;/p&gt;</comment>
                            <comment id="105902" author="mamiyaotaru" created="Tue, 24 Sep 2013 02:32:01 +0200"  >&lt;p&gt;still present in 1.6.4 and 1.7pre&lt;/p&gt;

&lt;p&gt;REPRODUCE: &lt;/p&gt;

&lt;p&gt;1: load this world: &lt;a href=&quot;http://www.mediafire.com/?8o5hj55pwjolwos&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://www.mediafire.com/?8o5hj55pwjolwos&lt;/a&gt; &lt;br/&gt;
2: walk under the platform.  Watch the shadow disappear.  This only happens with platforms at level 15, 31, 47, 63, etc, for the reasons described in the initial report.&lt;/p&gt;

&lt;p&gt;confirm from scratch&lt;br/&gt;
1: start a flat world.  &lt;br/&gt;
2: Build a large 1 block thick platform at y level 31 (or 15 or 63)&lt;br/&gt;
3: exit. &lt;br/&gt;
4: Load world again.  walk on the ground under the platform.  Shadow from the platform disappears as the lighting is updated based on the heightmap (which does not see the platform)&lt;/p&gt;</comment>
                            <comment id="88224" author="bugi74" created="Wed, 10 Jul 2013 17:44:27 +0200"  >&lt;p&gt;Source code seems to have this bug still in 1.6.2, but I seem to be unable to reproduce this (or &lt;a href=&quot;https://bugs.mojang.com/browse/MC-911&quot; title=&quot;Sunlight in big caves and under overhangs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;MC-911&quot;&gt;&lt;del&gt;MC-911&lt;/del&gt;&lt;/a&gt;), so I can not really confirm. Nobody has yet been able to provide me an exact method to reproduce, or somehow my system is immune &lt;img class=&quot;emoticon&quot; src=&quot;https://bugs.mojang.com/images/icons/emoticons/tongue.png&quot; height=&quot;16&quot; width=&quot;16&quot; align=&quot;absmiddle&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;br/&gt;
(Edit: clarification: I have never been able to confirm this or &lt;a href=&quot;https://bugs.mojang.com/browse/MC-911&quot; title=&quot;Sunlight in big caves and under overhangs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;MC-911&quot;&gt;&lt;del&gt;MC-911&lt;/del&gt;&lt;/a&gt;, so in that sense, my words are not indication that it might have been fixed, either.)&lt;/p&gt;</comment>
                            <comment id="87770" author="ezekielelin" created="Wed, 10 Jul 2013 04:04:32 +0200"  >&lt;p&gt;Is this still a concern in the current Minecraft version? If so, please update the affected versions in order to best aid Mojang ensuring bugs are still valid in the latest releases/pre-releases.&lt;/p&gt;</comment>
                            <comment id="82270" author="mamiyaotaru" created="Thu, 4 Jul 2013 11:00:43 +0200"  >&lt;p&gt;deleterious effects, clear explanation, two character fix.  six months old.&lt;/p&gt;

&lt;p&gt;this bug tracker is useless&lt;/p&gt;</comment>
                            <comment id="60500" author="coderaider" created="Tue, 16 Apr 2013 11:46:56 +0200"  >&lt;p&gt;This bug is not related to &lt;a href=&quot;https://bugs.mojang.com/browse/MC-13544&quot; title=&quot;Wrong LC-values&quot; class=&quot;issue-link&quot; data-issue-key=&quot;MC-13544&quot;&gt;&lt;del&gt;MC-13544&lt;/del&gt;&lt;/a&gt;. That problem is not related to any lighting issues like the one here is.&lt;/p&gt;</comment>
                            <comment id="45766" author="mamiyaotaru" created="Thu, 14 Feb 2013 22:27:19 +0100"  >&lt;p&gt;part of me wants to just wait and see if this gets fixed along with Dinnerbone&apos;s lighting changes.  At the same time, as long as he is doing that, I&apos;d love to be sure this actually gets addressed.  This bug has been around since 1.8 beta at least.&lt;/p&gt;</comment>
                            <comment id="43899" author="azurewhitewolf" created="Wed, 6 Feb 2013 01:07:22 +0100"  >&lt;p&gt;&quot;The method either needs to check this.getTopFilledSegment() + 16 instead of this.getTopFilledSegment() + 16 - 1, or inside the loop check this.getBlockID(var2, var4, var3) instead of this.getBlockID(var2, var4 - 1, var3)&quot; Quote from Jason Winzenried&lt;/p&gt;

&lt;p&gt;So I tested your theory and guess what...It works, it got rid of the light bug!  All I did was remove the -1 from the line &quot;this.getBlockID(var2, var4 - 1, var3)&quot;  hopefully the team of Mojang will have a closer look at this part of the code and see what is going on there.  I don&apos;t want to keep on removing that silly little number all the time when the game updates.  &lt;img class=&quot;emoticon&quot; src=&quot;https://bugs.mojang.com/images/icons/emoticons/wink.png&quot; height=&quot;16&quot; width=&quot;16&quot; align=&quot;absmiddle&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;/p&gt;</comment>
                            <comment id="37310" author="iamthepiguy" created="Thu, 17 Jan 2013 12:53:18 +0100"  >&lt;p&gt;So to clarify, this is caused by the subtraction (to get 0-based index from 1-based index) happening &lt;b&gt;twice&lt;/b&gt;, at&lt;br/&gt;
&lt;tt&gt;int var4 = var1 + 16 &lt;b&gt;- 1&lt;/b&gt;;&lt;/tt&gt;&lt;br/&gt;
and&lt;br/&gt;
&lt;tt&gt;int var5 = this.getBlockID(var2, var4 &lt;b&gt;- 1&lt;/b&gt;, var3);&lt;/tt&gt;&lt;/p&gt;

&lt;p&gt;So removing either offending subtraction would fix it.&lt;/p&gt;</comment>
                            <comment id="36936" author="kumasasa" created="Tue, 15 Jan 2013 08:27:00 +0100"  >&lt;p&gt;Steps to reproduce (see &lt;a href=&quot;https://bugs.mojang.com/browse/MC-7442&quot; title=&quot;Lighting error in superflat worlds.&quot; class=&quot;issue-link&quot; data-issue-key=&quot;MC-7442&quot;&gt;&lt;del&gt;MC-7442&lt;/del&gt;&lt;/a&gt; ):&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;Create a superflat world (Preset Overworld)&lt;/li&gt;
	&lt;li&gt;Dig a tunnel 1 block below the surface&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="36928" author="mamiyaotaru" created="Tue, 15 Jan 2013 04:42:32 +0100"  >&lt;p&gt;lighting errors as a result of the heightmap ignoring y levels 31 and 63 (as it does for every level that&apos;s at the top of an ExtendedBlockStorage)&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10102">
                    <name>Duplicate</name>
                                                                <inwardlinks description="is duplicated by">
                                        <issuelink>
            <issuekey id="20233">MC-7442</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="77728">MC-51752</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10103">
                    <name>Relates</name>
                                            <outwardlinks description="relates to">
                                        <issuelink>
            <issuekey id="110931">MC-80966</issuekey>
        </issuelink>
                            </outwardlinks>
                                                                <inwardlinks description="relates to">
                                        <issuelink>
            <issuekey id="28712">MC-13544</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="50582">MC-29490</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="81575">MC-55172</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="90735">MC-63346</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                            <attachment id="60227" name="heightMapBug.png" size="37046" author="mamiyaotaru" created="Thu, 20 Mar 2014 23:08:58 +0100"/>
                            <attachment id="73677" name="image.jpg" size="2748" author="Jkk0203" created="Fri, 25 Jul 2014 06:31:53 +0200"/>
                            <attachment id="60228" name="lightbug3.png" size="891824" author="mamiyaotaru" created="Thu, 20 Mar 2014 23:09:14 +0100"/>
                            <attachment id="60226" name="shadowTestFlatWorld.zip" size="317790" author="mamiyaotaru" created="Thu, 20 Mar 2014 23:08:49 +0100"/>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                <customfield id="customfield_10701" key="com.atlassian.jira.plugin.system.customfieldtypes:datetime">
                        <customfieldname>CHK</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Sat, 28 Jun 2014 10:53:00 +0200</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10500" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Confirmation Status</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10302"><![CDATA[Community Consensus]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                        <customfield id="customfield_11700" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_11100" key="com.atlassian.jira.plugin.system.customfieldtypes:float">
                        <customfieldname>Linked</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>3.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                <customfield id="customfield_11600" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|i0mzvr:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                    </customfields>
    </item>
</channel>
</rss>