<!-- 
RSS generated by JIRA (9.12.2#9120002-sha1:301bf498dd45d800842af0b84230f1bb58606c13) at Sun Jan 12 12:17:18 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-8293] Dispensers spawn mobs without offset along the y-axis</title>
                <link>https://bugs.mojang.com/browse/MC-8293</link>
                <project id="10400" key="MC">Minecraft: Java Edition</project>
                    <description>&lt;p&gt;Upwards and downwards facing dispensers with spawn eggs will spawn the mob inside the dispenser (instead of on top/below it).&lt;br/&gt;
This can cause small mobs (e.g. chicken, silverfish) to suffocate inside the dispenser.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Steps to reproduce&lt;/b&gt;&lt;br/&gt;
1. Place an upwards facing dispenser on the foor. &lt;span class=&quot;nobr&quot;&gt;&lt;a href=&quot;https://bugs.mojang.com/secure/attachment/100262/100262_2015-09-19_01.12.23.png&quot; title=&quot;2015-09-19_01.12.23.png attached to MC-8293&quot;&gt;2015-09-19_01.12.23.png&lt;sup&gt;&lt;img class=&quot;rendericon&quot; src=&quot;https://bugs.mojang.com/images/icons/link_attachment_7.gif&quot; height=&quot;7&quot; width=&quot;7&quot; align=&quot;absmiddle&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;/sup&gt;&lt;/a&gt;&lt;/span&gt;&lt;br/&gt;
2. Put spawn eggs in it (e.g. Creeper)&lt;br/&gt;
3. Trigger the dispenser.&lt;br/&gt;
4. The mob is inside the dispenser, and not as expected on top of it. &lt;span class=&quot;nobr&quot;&gt;&lt;a href=&quot;https://bugs.mojang.com/secure/attachment/100263/100263_2015-09-19_01.12.33.png&quot; title=&quot;2015-09-19_01.12.33.png attached to MC-8293&quot;&gt;2015-09-19_01.12.33.png&lt;sup&gt;&lt;img class=&quot;rendericon&quot; src=&quot;https://bugs.mojang.com/images/icons/link_attachment_7.gif&quot; height=&quot;7&quot; width=&quot;7&quot; align=&quot;absmiddle&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;/sup&gt;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Fix&lt;/b&gt;&lt;br/&gt;
The simplest fix would be to just add the offset to the spawn position of the mob as it is done for x and z already.&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-style: solid;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeHeader panelHeader&quot; style=&quot;border-bottom-width: 1px;border-bottom-style: solid;&quot;&gt;&lt;b&gt;Bootstrap.java (in MCP)&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;         &lt;span class=&quot;code-keyword&quot;&gt;public&lt;/span&gt; ItemStack dispenseStack(IBlockSource source, ItemStack stack) {
            EnumFacing var3 = BlockDispenser.getFacing(source.getBlockMetadata());
            &lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt; var4 = source.getX() + (&lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt;)var3.getFrontOffsetX();
            &lt;span class=&quot;code-comment&quot;&gt;// Added  &lt;span class=&quot;code-quote&quot;&gt;&quot;+ (&lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt;)var3.getFrontOffsetY()&quot;&lt;/span&gt;
&lt;/span&gt;            &lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt; var6 = (&lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt;)((&lt;span class=&quot;code-object&quot;&gt;float&lt;/span&gt;)source.getBlockPos().getY() + 0.2F) + (&lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt;)var3.getFrontOffsetY();
            &lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt; var8 = source.getZ() + (&lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt;)var3.getFrontOffsetZ();
            Entity var10 = ItemMonsterPlacer.spawnCreature(source.getWorld(), stack.getMetadata(), var4, var6, var8);
            &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt;(var10 &lt;span class=&quot;code-keyword&quot;&gt;instanceof&lt;/span&gt; EntityLivingBase &amp;amp;&amp;amp; stack.hasDisplayName()) {
               ((EntityLiving)var10).setCustomNameTag(stack.getDisplayName());
            }

            stack.splitStack(1);
            &lt;span class=&quot;code-keyword&quot;&gt;return&lt;/span&gt; stack;
         }
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;This fix would be ok already, but for downwards facing dispensers it would still spawn two high+ mobs inside the dispenser with their head.&lt;br/&gt;
So the fancy way may be to subtract the height of the mob for downwards facing ones.&lt;br/&gt;
Then again this is not done for sideways ones either so I guess just adding the offset would be &quot;as expected&quot; &lt;img class=&quot;emoticon&quot; src=&quot;https://bugs.mojang.com/images/icons/emoticons/smile.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;</description>
                <environment></environment>
        <key id="21211">MC-8293</key>
            <summary>Dispensers spawn mobs without offset along the y-axis</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="jeb">[Mojang] Jeb (Jens Bergensten)</assignee>
                                    <reporter username="panda4994">[Mojang] Panda</reporter>
                        <labels>
                    </labels>
                <created>Fri, 25 Jan 2013 04:27:54 +0100</created>
                <updated>Mon, 4 Jun 2018 21:51:14 +0200</updated>
                            <resolved>Tue, 9 Aug 2016 11:15:22 +0200</resolved>
                                    <version>Snapshot 13w04a</version>
                    <version>Snapshot 13w05b</version>
                    <version>Snapshot 13w06a</version>
                    <version>Snapshot 13w07a</version>
                    <version>Snapshot 13w10b</version>
                    <version>Minecraft 1.5</version>
                    <version>Minecraft 1.5.1</version>
                    <version>Minecraft 1.5.2</version>
                    <version>Snapshot 13w18c</version>
                    <version>Snapshot 13w19a</version>
                    <version>Snapshot 13w24a</version>
                    <version>Snapshot 13w24b</version>
                    <version>Snapshot 13w25a</version>
                    <version>Snapshot 13w25b</version>
                    <version>Snapshot 13w25c</version>
                    <version>Minecraft 1.6</version>
                    <version>Minecraft 1.6.1</version>
                    <version>Minecraft 1.6.2</version>
                    <version>Minecraft 1.7.4</version>
                    <version>Minecraft 14w03b</version>
                    <version>Minecraft 14w05b</version>
                    <version>Minecraft 14w06b</version>
                    <version>Minecraft 14w07a</version>
                    <version>Minecraft 14w08a</version>
                    <version>Minecraft 1.7.5</version>
                    <version>Minecraft 1.8</version>
                    <version>Minecraft 1.8.7</version>
                    <version>Minecraft 1.8.8</version>
                    <version>Minecraft 15w31a</version>
                    <version>Minecraft 15w36d</version>
                    <version>Minecraft 15w38a</version>
                    <version>Minecraft 15w38b</version>
                    <version>Minecraft 15w39b</version>
                    <version>Minecraft 15w39c</version>
                    <version>Minecraft 15w43b</version>
                    <version>Minecraft 15w46a</version>
                    <version>Minecraft 15w47a</version>
                    <version>Minecraft 15w47b</version>
                    <version>Minecraft 15w47c</version>
                    <version>Minecraft 1.8.9</version>
                    <version>Minecraft 15w51b</version>
                    <version>Minecraft 16w02a</version>
                    <version>Minecraft 16w06a</version>
                    <version>Minecraft 16w07a</version>
                    <version>Minecraft 1.9 Pre-Release 1</version>
                    <version>Minecraft 1.9 Pre-Release 2</version>
                    <version>Minecraft 1.9 Pre-Release 3</version>
                    <version>Minecraft 1.9</version>
                    <version>Minecraft 1.9.1 Pre-Release 1</version>
                    <version>Minecraft 1.9.1 Pre-Release 2</version>
                    <version>Minecraft 1.9.1 Pre-Release 3</version>
                    <version>Minecraft 1.9.1</version>
                    <version>Minecraft 1.9.2</version>
                    <version>Minecraft 16w14a</version>
                    <version>Minecraft 16w15a</version>
                    <version>Minecraft 16w15b</version>
                    <version>Minecraft 1.9.3 Pre-Release 1</version>
                    <version>Minecraft 1.9.3 Pre-Release 2</version>
                    <version>Minecraft 1.9.3 Pre-Release 3</version>
                    <version>Minecraft 1.9.3</version>
                    <version>Minecraft 1.9.4</version>
                    <version>Minecraft 16w20a</version>
                    <version>Minecraft 16w21a</version>
                    <version>Minecraft 16w21b</version>
                    <version>Minecraft 1.10 Pre-Release 1</version>
                    <version>Minecraft 1.10 Pre-Release 2</version>
                    <version>Minecraft 1.10</version>
                    <version>Minecraft 1.10.1</version>
                    <version>Minecraft 1.10.2</version>
                                    <fixVersion>Minecraft 16w32a</fixVersion>
                                                        <votes>72</votes>
                                    <watches>17</watches>
                                                                            <comments>
                            <comment id="324671" author="farogaming" created="Wed, 10 Aug 2016 18:59:13 +0200"  >&lt;p&gt;I think the most intuitive, consistent and further bug-preventing would be to put the top of the hitbox at the bottom edge of the dispenser. Should be tested with custom spawn eggs with huge slimes.&lt;/p&gt;</comment>
                            <comment id="324398" author="jeb" created="Tue, 9 Aug 2016 11:15:22 +0200"  >&lt;p&gt;As mentioned in the description, still doesn&apos;t work perfectly for downwards-facing dispensers. Mainly a bit tricky to know how much to offset the entity, since there may be a floor below the dispenser as well&lt;/p&gt;</comment>
                            <comment id="316069" author="__null" created="Wed, 22 Jun 2016 19:05:42 +0200"  >&lt;p&gt;Confirmed for &lt;font color=&quot;#060&quot;&gt;&lt;b&gt;1.10.1&lt;/b&gt;&lt;/font&gt;.&lt;/p&gt;</comment>
                            <comment id="315514" author="shawntriangles" created="Tue, 21 Jun 2016 18:03:16 +0200"  >&lt;p&gt;Also duplicated by &lt;a href=&quot;https://bugs.mojang.com/browse/MC-103936&quot; title=&quot;upwards Dispenser spawns mob inside itself&quot; class=&quot;issue-link&quot; data-issue-key=&quot;MC-103936&quot;&gt;&lt;del&gt;MC-103936&lt;/del&gt;&lt;/a&gt;.&lt;/p&gt;</comment>
                            <comment id="311895" author="__null" created="Wed, 8 Jun 2016 23:41:02 +0200"  >&lt;p&gt;Confirmed for &lt;font color=&quot;#060&quot;&gt;&lt;b&gt;1.10&lt;/b&gt;&lt;/font&gt;.&lt;/p&gt;</comment>
                            <comment id="311451" author="__null" created="Wed, 8 Jun 2016 00:57:57 +0200"  >&lt;p&gt;Confirmed for &lt;font color=&quot;#060&quot;&gt;&lt;b&gt;1.10-pre2&lt;/b&gt;&lt;/font&gt;.&lt;/p&gt;</comment>
                            <comment id="309470" author="__null" created="Fri, 3 Jun 2016 03:47:37 +0200"  >&lt;p&gt;Confirmed for &lt;font color=&quot;#060&quot;&gt;&lt;b&gt;1.10-pre1&lt;/b&gt;&lt;/font&gt;.&lt;/p&gt;</comment>
                            <comment id="307788" author="__null" created="Fri, 27 May 2016 00:59:06 +0200"  >&lt;p&gt;Confirmed for &lt;font color=&quot;#060&quot;&gt;&lt;b&gt;16w21b&lt;/b&gt;&lt;/font&gt;.&lt;/p&gt;</comment>
                            <comment id="307466" author="__null" created="Thu, 26 May 2016 01:06:25 +0200"  >&lt;p&gt;Confirmed for &lt;font color=&quot;#060&quot;&gt;&lt;b&gt;16w21a&lt;/b&gt;&lt;/font&gt;.&lt;/p&gt;</comment>
                            <comment id="305389" author="__null" created="Thu, 19 May 2016 00:04:06 +0200"  >&lt;p&gt;Confirmed for &lt;b&gt;16w20a&lt;/b&gt;.&lt;/p&gt;</comment>
                            <comment id="304189" author="__null" created="Thu, 12 May 2016 01:10:02 +0200"  >&lt;p&gt;Confirmed for &lt;b&gt;1.9.4&lt;/b&gt;.&lt;/p&gt;</comment>
                            <comment id="303239" author="__null" created="Fri, 6 May 2016 02:06:23 +0200"  >&lt;p&gt;Confirmed for &lt;b&gt;1.9.3-pre3&lt;/b&gt;.&lt;/p&gt;</comment>
                            <comment id="300246" author="jackietheboy" created="Thu, 14 Apr 2016 23:06:42 +0200"  >&lt;p&gt;Confirmed for 16w15b&lt;/p&gt;</comment>
                            <comment id="285983" author="shufboyardee" created="Mon, 15 Feb 2016 22:48:33 +0100"  >&lt;p&gt;Affects 16w07a.&lt;/p&gt;</comment>
                            <comment id="285622" author="saziumr" created="Mon, 15 Feb 2016 12:28:34 +0100"  >&lt;p&gt;Confirmed for 16w06a.&lt;/p&gt;</comment>
                            <comment id="277859" author="james549" created="Thu, 14 Jan 2016 00:01:22 +0100"  >&lt;p&gt;Confirmed for &lt;b&gt;16w02a&lt;/b&gt;.&lt;/p&gt;</comment>
                            <comment id="273731" author="james549" created="Mon, 21 Dec 2015 01:16:20 +0100"  >&lt;p&gt;Confirmed for 15w51b.&lt;/p&gt;</comment>
                            <comment id="250692" author="kumasasa" created="Sat, 19 Sep 2015 01:08:13 +0200"  >&lt;p&gt;Changed reporter to &lt;a href=&quot;https://bugs.mojang.com/secure/ViewProfile.jspa?name=panda4994&quot; class=&quot;user-hover&quot; rel=&quot;panda4994&quot;&gt;panda4994&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="250314" author="panda4994" created="Thu, 17 Sep 2015 20:21:22 +0200"  >&lt;p&gt;Can confirm for 15w38b.&lt;/p&gt;</comment>
                            <comment id="247409" author="panda4994" created="Sat, 5 Sep 2015 06:02:33 +0200"  >&lt;p&gt;Can confirm for 1.8.8 and 15w36d.&lt;/p&gt;</comment>
                            <comment id="233162" author="marcono1234" created="Fri, 3 Jul 2015 20:23:05 +0200"  >&lt;p&gt;Confirmed for&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;&lt;b&gt;1.8.7&lt;/b&gt; (also based on &lt;a href=&quot;https://bugs.mojang.com/browse/MC-82016&quot; title=&quot;Dispencers facing down dispencing mobs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;MC-82016&quot;&gt;&lt;del&gt;MC-82016&lt;/del&gt;&lt;/a&gt;) for downwards facing dispensers as well&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="208813" author="downunderit" created="Fri, 14 Nov 2014 13:49:08 +0100"  >&lt;p&gt;Still bugged in 1.8.1 pre4.&lt;/p&gt;</comment>
                            <comment id="198194" author="herpestofthederp" created="Sat, 6 Sep 2014 16:07:16 +0200"  >&lt;p&gt;I want to make a hidden dispenser in the wall that will drop mobs, and this bug is not letting me do it simply at all.&lt;br/&gt;
Still in 1.8&lt;/p&gt;</comment>
                            <comment id="95314" author="thrashkal" created="Mon, 29 Jul 2013 19:01:44 +0200"  >&lt;p&gt;Pretty annoying bug.&lt;br/&gt;
Looks like devs don&apos;t care of it.&lt;br/&gt;
It&apos;ll be very easy to fix, just add +2 y over the dispenser to have a good spawn location&lt;/p&gt;</comment>
                            <comment id="94943" author="sam_tunder" created="Sun, 28 Jul 2013 12:08:20 +0200"  >&lt;p&gt;was able to reproduce in 1.6.2! so its still there!&lt;/p&gt;</comment>
                            <comment id="88952" author="mindmadness45" created="Thu, 11 Jul 2013 11:02:32 +0200"  >&lt;p&gt;Still in 1.6.2.&lt;/p&gt;</comment>
                            <comment id="87829" author="ezekielelin" created="Wed, 10 Jul 2013 04:04:52 +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="79493" author="romangvk" created="Mon, 1 Jul 2013 15:20:49 +0200"  >&lt;p&gt;Stil in 1.6.1.&lt;/p&gt;</comment>
                            <comment id="75798" author="platypus1998" created="Fri, 21 Jun 2013 01:52:05 +0200"  >&lt;p&gt;This is still in 13w25a/b/c.&lt;/p&gt;</comment>
                            <comment id="73423" author="bw_" created="Fri, 14 Jun 2013 00:20:24 +0200"  >&lt;p&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=ymfFVPisLG4&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://www.youtube.com/watch?v=ymfFVPisLG4&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="57266" author="torabi" created="Tue, 26 Mar 2013 14:26:02 +0100"  >&lt;p&gt;Issues are addressed roughly in order by number of votes. This issue currently ranks #62.&lt;/p&gt;</comment>
                            <comment id="57022" author="onlinewinner" created="Sun, 24 Mar 2013 23:40:29 +0100"  >&lt;p&gt;Needs to be fixed &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;... please &lt;img class=&quot;emoticon&quot; src=&quot;https://bugs.mojang.com/images/icons/emoticons/smile.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="57021" author="onlinewinner" created="Sun, 24 Mar 2013 23:39:45 +0100"  >&lt;p&gt;screenshot &apos;2013-03-24_22.32.08&apos; &lt;br/&gt;
Is me spawning a wolf&lt;br/&gt;
screenshot &apos;2013-03-24_22.32.14&apos;&lt;br/&gt;
Is the wolf dien&lt;/p&gt;</comment>
                            <comment id="50838" author="ms300000" created="Thu, 7 Mar 2013 21:39:02 +0100"  >&lt;p&gt;yah this isnt resolved, mojang needs to refix this pronto!&lt;/p&gt;</comment>
                            <comment id="50697" author="celestialwarrior" created="Thu, 7 Mar 2013 16:03:21 +0100"  >&lt;p&gt;This is still happening in the 1.5 prerelease. Please fix.&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10102">
                    <name>Duplicate</name>
                                                                <inwardlinks description="is duplicated by">
                                        <issuelink>
            <issuekey id="21309">MC-8388</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="21313">MC-8391</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="23050">MC-9444</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="23541">MC-9797</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="23894">MC-10053</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="25575">MC-11436</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="27104">MC-12274</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="27254">MC-12414</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="35838">MC-17758</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="37001">MC-18599</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="75766">MC-49952</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="76309">MC-50466</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="93343">MC-65853</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="112693">MC-82016</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="114169">MC-83114</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="124710">MC-91212</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="134709">MC-97344</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="144450">MC-103936</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10103">
                    <name>Relates</name>
                                            <outwardlinks description="relates to">
                                        <issuelink>
            <issuekey id="202782">MC-130730</issuekey>
        </issuelink>
                            </outwardlinks>
                                                                <inwardlinks description="relates to">
                                        <issuelink>
            <issuekey id="188768">MC-123420</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                            <attachment id="26098" name="2013-03-24_22.32.08.png" size="485666" author="onlinewinner" created="Sun, 24 Mar 2013 23:39:45 +0100"/>
                            <attachment id="26099" name="2013-03-24_22.32.14.png" size="393398" author="onlinewinner" created="Sun, 24 Mar 2013 23:39:45 +0100"/>
                            <attachment id="100262" name="2015-09-19_01.12.23.png" size="30282" author="panda4994" created="Sat, 19 Sep 2015 01:16:26 +0200"/>
                            <attachment id="100263" name="2015-09-19_01.12.33.png" size="36936" author="panda4994" created="Sat, 19 Sep 2015 01:16:26 +0200"/>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                <customfield id="customfield_10701" key="com.atlassian.jira.plugin.system.customfieldtypes:datetime">
                        <customfieldname>CHK</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Wed, 6 Feb 2013 19:29:00 +0100</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10500" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Confirmation Status</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10303"><![CDATA[Confirmed]]></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>8.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                <customfield id="customfield_11600" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|i0na4v:</customfieldvalue>

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