<!-- 
RSS generated by JIRA (9.12.2#9120002-sha1:301bf498dd45d800842af0b84230f1bb58606c13) at Sun Jan 12 12:23:01 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-10025] Burn time indicator of a furnace not working correctly after reloading the world</title>
                <link>https://bugs.mojang.com/browse/MC-10025</link>
                <project id="10400" key="MC">Minecraft: Java Edition</project>
                    <description>&lt;h3&gt;&lt;a name=&quot;Thebug&quot;&gt;&lt;/a&gt;The bug&lt;/h3&gt;

&lt;p&gt;When you start a furnace burning and then swap out what&apos;s in the fuel slot and save and quit, the next time you load the burn time indicator will glitch. The reason for this is that the NBT file for furnaces does not store the max fuel burn time and instead dynamically gets it from the fuel slot, which may no longer contain the same item as was used to initially fuel the furnace. This can be seen in the code snippet attached.&lt;/p&gt;

&lt;h3&gt;&lt;a name=&quot;Toreproduce&quot;&gt;&lt;/a&gt;To reproduce&lt;/h3&gt;

&lt;ol&gt;
	&lt;li&gt;Start furnace burning with a fuel other than a stick.&lt;/li&gt;
	&lt;li&gt;Allow the burn time to visibly decrease.&lt;/li&gt;
	&lt;li&gt;Swap the fuel with something that burns shorter than the original fuel.&lt;/li&gt;
	&lt;li&gt;Save and quit.&lt;/li&gt;
	&lt;li&gt;Reload the save.&lt;/li&gt;
	&lt;li&gt;Open the furnace.&lt;/li&gt;
	&lt;li&gt;The burn time indicator will have increased.&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;With particularly large differences (lava bucket to stick), the progress bar may wrap around the top of the screen and display twice (see &lt;span class=&quot;nobr&quot;&gt;&lt;a href=&quot;https://bugs.mojang.com/secure/attachment/124506/124506_2016-09-19_14.59.18.png&quot; title=&quot;2016-09-19_14.59.18.png attached to MC-10025&quot;&gt;2016-09-19_14.59.18.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;h3&gt;&lt;a name=&quot;Fix&quot;&gt;&lt;/a&gt;Fix&lt;/h3&gt;

&lt;p&gt;Rather than attempting to guess the total burn time of the original item, it should be saved too:&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeHeader panelHeader&quot; style=&quot;border-bottom-width: 1px;&quot;&gt;&lt;b&gt;TileEntityFurnace&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; void readFromNBT(NBTTagCompound compound)
    {
        &lt;span class=&quot;code-keyword&quot;&gt;super&lt;/span&gt;.readFromNBT(compound);
        &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.furnaceItemStacks = NonNullList.&amp;lt;ItemStack&amp;gt;withSize(&lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.getSizeInventory(), ItemStack.EMPTY);
        ItemStackHelper.loadAllItems(compound, &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.furnaceItemStacks);
        &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.furnaceBurnTime = compound.getShort(&lt;span class=&quot;code-quote&quot;&gt;&quot;BurnTime&quot;&lt;/span&gt;);
        &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.cookTime = compound.getShort(&lt;span class=&quot;code-quote&quot;&gt;&quot;CookTime&quot;&lt;/span&gt;);
        &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.totalCookTime = compound.getShort(&lt;span class=&quot;code-quote&quot;&gt;&quot;CookTimeTotal&quot;&lt;/span&gt;);
        &lt;span class=&quot;code-comment&quot;&gt;//&lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.currentItemBurnTime = getItemBurnTime(&lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.furnaceItemStacks.get(1));
&lt;/span&gt;        &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.currentItemBurnTime = compound.getShort(&lt;span class=&quot;code-quote&quot;&gt;&quot;BurnTimeTotal&quot;&lt;/span&gt;); &lt;span class=&quot;code-comment&quot;&gt;// added
&lt;/span&gt;
        &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (compound.hasKey(&lt;span class=&quot;code-quote&quot;&gt;&quot;CustomName&quot;&lt;/span&gt;, 8))
        {
            &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.furnaceCustomName = compound.getString(&lt;span class=&quot;code-quote&quot;&gt;&quot;CustomName&quot;&lt;/span&gt;);
        }
    }

    &lt;span class=&quot;code-keyword&quot;&gt;public&lt;/span&gt; NBTTagCompound writeToNBT(NBTTagCompound compound)
    {
        &lt;span class=&quot;code-keyword&quot;&gt;super&lt;/span&gt;.writeToNBT(compound);
        compound.setShort(&lt;span class=&quot;code-quote&quot;&gt;&quot;BurnTime&quot;&lt;/span&gt;, (&lt;span class=&quot;code-object&quot;&gt;short&lt;/span&gt;)&lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.furnaceBurnTime);
        compound.setShort(&lt;span class=&quot;code-quote&quot;&gt;&quot;CookTime&quot;&lt;/span&gt;, (&lt;span class=&quot;code-object&quot;&gt;short&lt;/span&gt;)&lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.cookTime);
        compound.setShort(&lt;span class=&quot;code-quote&quot;&gt;&quot;CookTimeTotal&quot;&lt;/span&gt;, (&lt;span class=&quot;code-object&quot;&gt;short&lt;/span&gt;)&lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.totalCookTime);
        compound.setShort(&lt;span class=&quot;code-quote&quot;&gt;&quot;BurnTimeTotal&quot;&lt;/span&gt;, (&lt;span class=&quot;code-object&quot;&gt;short&lt;/span&gt;)&lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.currentItemBurnTime); &lt;span class=&quot;code-comment&quot;&gt;// added
&lt;/span&gt;        ItemStackHelper.saveAllItems(compound, &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.furnaceItemStacks);

        &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (&lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.hasCustomName())
        {
            compound.setString(&lt;span class=&quot;code-quote&quot;&gt;&quot;CustomName&quot;&lt;/span&gt;, &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.furnaceCustomName);
        }

        &lt;span class=&quot;code-keyword&quot;&gt;return&lt;/span&gt; compound;
    }
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</description>
                <environment></environment>
        <key id="23861">MC-10025</key>
            <summary>Burn time indicator of a furnace not working correctly after reloading the world</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="HugoHagglund">[Mojang] SHugoh</assignee>
                                    <reporter username="dimitriye98">Dimitriye Danilovic</reporter>
                        <labels>
                            <label>furnace</label>
                            <label>rendering</label>
                            <label>smelting</label>
                    </labels>
                <created>Tue, 19 Feb 2013 05:05:40 +0100</created>
                <updated>Fri, 22 Nov 2024 12:55:00 +0100</updated>
                            <resolved>Fri, 22 Nov 2024 12:55:00 +0100</resolved>
                                    <version>Minecraft 1.4.7</version>
                    <version>Snapshot 13w07a</version>
                    <version>Minecraft 1.5</version>
                    <version>Snapshot 13w11a</version>
                    <version>Minecraft 1.5.1</version>
                    <version>Minecraft 1.5.2</version>
                    <version>Minecraft 1.6.1</version>
                    <version>Minecraft 1.6.2</version>
                    <version>Minecraft 13w36a</version>
                    <version>Minecraft 13w36b</version>
                    <version>Minecraft 1.7.4</version>
                    <version>Minecraft 1.7.10</version>
                    <version>Minecraft 1.10.2</version>
                    <version>Minecraft 16w35a</version>
                    <version>Minecraft 16w36a</version>
                    <version>Minecraft 16w38a</version>
                    <version>Minecraft 1.12.1</version>
                    <version>Minecraft 1.12.2</version>
                    <version>Minecraft 17w43a</version>
                    <version>Minecraft 17w43b</version>
                    <version>Minecraft 17w48a</version>
                    <version>Minecraft 17w50a</version>
                    <version>Minecraft 18w01a</version>
                    <version>Minecraft 18w03b</version>
                    <version>Minecraft 18w06a</version>
                    <version>Minecraft 18w09a</version>
                    <version>Minecraft 18w10d</version>
                    <version>Minecraft 18w20c</version>
                    <version>Minecraft 1.13.1</version>
                    <version>Minecraft 1.13.2</version>
                    <version>Minecraft 19w14a</version>
                    <version>Minecraft 1.14.3</version>
                    <version>1.14.4</version>
                    <version>19w39a</version>
                    <version>1.15 Pre-release 6</version>
                    <version>1.15.1</version>
                    <version>20w07a</version>
                    <version>1.16</version>
                    <version>1.16.1</version>
                    <version>1.16.2</version>
                    <version>1.16.3 Release Candidate 1</version>
                    <version>1.16.3</version>
                    <version>1.16.4 Pre-release 1</version>
                    <version>1.16.4 Pre-release 2</version>
                    <version>1.16.4</version>
                    <version>20w45a</version>
                    <version>20w46a</version>
                    <version>20w48a</version>
                    <version>20w49a</version>
                    <version>20w51a</version>
                    <version>21w03a</version>
                    <version>1.16.5</version>
                    <version>21w05a</version>
                    <version>21w05b</version>
                    <version>21w06a</version>
                    <version>21w14a</version>
                    <version>21w15a</version>
                    <version>21w16a</version>
                    <version>21w17a</version>
                    <version>21w18a</version>
                    <version>21w19a</version>
                    <version>21w20a</version>
                    <version>1.17 Pre-release 1</version>
                    <version>1.17 Pre-release 4</version>
                    <version>1.17</version>
                    <version>1.17.1 Pre-release 1</version>
                    <version>1.17.1</version>
                    <version>21w37a</version>
                    <version>21w41a</version>
                    <version>1.18 Pre-release 7</version>
                    <version>1.18 Pre-release 8</version>
                    <version>1.19</version>
                    <version>1.19.2</version>
                    <version>1.19.3</version>
                    <version>23w03a</version>
                    <version>23w04a</version>
                    <version>23w05a</version>
                    <version>23w06a</version>
                    <version>23w07a</version>
                    <version>1.19.4 Pre-release 3</version>
                    <version>1.19.4</version>
                    <version>23w13a</version>
                    <version>23w14a</version>
                    <version>1.20 Pre-release 1</version>
                    <version>1.20 Pre-release 2</version>
                    <version>1.20 Pre-release 4</version>
                    <version>1.20.1</version>
                    <version>23w31a</version>
                    <version>23w32a</version>
                    <version>23w33a</version>
                    <version>23w35a</version>
                    <version>1.20.2 Pre-release 1</version>
                    <version>1.20.2 Pre-release 2</version>
                    <version>1.20.2</version>
                    <version>23w40a</version>
                    <version>23w41a</version>
                    <version>23w42a</version>
                    <version>23w44a</version>
                    <version>1.20.4</version>
                    <version>24w03b</version>
                    <version>24w04a</version>
                    <version>24w05a</version>
                    <version>24w11a</version>
                    <version>24w12a</version>
                    <version>1.20.6</version>
                    <version>1.21</version>
                    <version>1.21.3</version>
                                    <fixVersion>1.21.4 Pre-Release 2</fixVersion>
                                                        <votes>40</votes>
                                    <watches>21</watches>
                                                                            <comments>
                            <comment id="1274228" author="darth cobby" created="Thu, 10 Aug 2023 15:53:43 +0200"  >&lt;p&gt;The broken GUI is fixed in 23w32a, but the burn time indicator is still incorrect.&lt;/p&gt;</comment>
                            <comment id="1199946" author="JIRAUSER566325" created="Wed, 14 Sep 2022 21:19:09 +0200"  >&lt;p&gt;Can confirm in 1.19.2.&lt;/p&gt;</comment>
                            <comment id="1001737" author="JIRAUSER591481" created="Mon, 31 May 2021 01:40:36 +0200"  >&lt;p&gt;&lt;del&gt;Does this also occur when switching dimensions or unloading and reloading the chunks in ways other than reloading the world?&lt;/del&gt;&lt;/p&gt;

&lt;p&gt;Never mind, that&apos;s&#160;&lt;a href=&quot;https://bugs.mojang.com/browse/MC-137146&quot; title=&quot;Furnace fuel indicator incorrect on chunk unload&quot; class=&quot;issue-link&quot; data-issue-key=&quot;MC-137146&quot;&gt;MC-137146&lt;/a&gt;.&lt;/p&gt;</comment>
                            <comment id="837002" author="JIRAUSER567750" created="Sat, 7 Nov 2020 18:49:05 +0100"  >&lt;p&gt;Confirmed for 1.16.4&lt;/p&gt;</comment>
                            <comment id="766846" author="JIRAUSER508442" created="Fri, 17 Jul 2020 14:20:06 +0200"  >&lt;p&gt;Can confirm for 20w29a&lt;/p&gt;</comment>
                            <comment id="742972" author="tpehep" created="Wed, 24 Jun 2020 23:34:56 +0200"  >&lt;p&gt;Can confirm for 1.16.1&lt;/p&gt;</comment>
                            <comment id="566656" author="guenstig" created="Tue, 16 Jul 2019 22:41:26 +0200"  >&lt;p&gt;confirmed for 1.14.3, happens also with lava bucket without intentional switching out of fuel item since full bucket changes to empty bucket&lt;/p&gt;</comment>
                            <comment id="484741" author="kraif" created="Sat, 25 Aug 2018 13:36:50 +0200"  >&lt;p&gt;Confirmed for 1.13.1.&lt;/p&gt;</comment>
                            <comment id="322630" author="lego551" created="Fri, 29 Jul 2016 22:23:45 +0200"  >&lt;p&gt;Confirmed for 1.10.2&lt;/p&gt;

&lt;p&gt;Also relating to &lt;a href=&quot;https://bugs.mojang.com/browse/MC-64354&quot; title=&quot;Furnace GUI broken&quot; class=&quot;issue-link&quot; data-issue-key=&quot;MC-64354&quot;&gt;&lt;del&gt;MC-64354&lt;/del&gt;&lt;/a&gt; (coal blocks not decreasing)&lt;/p&gt;</comment>
                            <comment id="295220" author="JIRAUSER71590" created="Thu, 17 Mar 2016 16:59:33 +0100"  >&lt;p&gt;No response for over a year.&lt;/p&gt;</comment>
                            <comment id="205287" author="galaxy_2alex" created="Sat, 25 Oct 2014 13:27:00 +0200"  >&lt;p&gt;Is this still a concern in the &lt;em&gt;current Minecraft version&lt;/em&gt; &lt;b&gt;1.8.1 Prerelease 3&lt;/b&gt; / Launcher version &lt;b&gt;1.5.3&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="177758" author="cyoor" created="Mon, 21 Jul 2014 23:52:54 +0200"  >&lt;p&gt;I can confirm this on 1.7.10&lt;br/&gt;
It is just a visual glitch though, so there is no need to put this as a high priority really.&lt;/p&gt;</comment>
                            <comment id="134441" author="fienxjox" created="Fri, 24 Jan 2014 16:50:15 +0100"  >&lt;p&gt;Galaxy_2Alex - I don&apos;t see the 14w03b as released as of right this moment, just the tweet that it is coming &quot;sometime today&quot;&lt;/p&gt;

&lt;p&gt;EDIT: and 3 minutes later, there it is....&lt;/p&gt;</comment>
                            <comment id="134437" author="yuzzzzuy" created="Fri, 24 Jan 2014 16:46:55 +0100"  >&lt;p&gt;I can confirm this for version 14w04a&lt;/p&gt;</comment>
                            <comment id="101717" author="infn555" created="Sun, 8 Sep 2013 12:43:26 +0200"  >&lt;p&gt;This still happens in 1.6.2, and the 1.7 snapshots.&lt;/p&gt;</comment>
                            <comment id="78855" author="kumasasa" created="Sun, 30 Jun 2013 00:56:30 +0200"  >&lt;p&gt;Confirmed for 1.6.1 and block of coal &lt;/p&gt;</comment>
                            <comment id="64813" author="kuubaku" created="Fri, 3 May 2013 09:07:25 +0200"  >&lt;p&gt;Can confirm in 1.5.2 using lava buckets. Apparently, empty bucket or its removal is being treated as if you were swapping the fuel.&lt;/p&gt;</comment>
                            <comment id="47736" author="evknucklehead" created="Tue, 26 Feb 2013 18:24:20 +0100"  >&lt;p&gt;The fuel source does not need to be swapped, either. Simply unloading the chunk and loading it again is enough to trigger the glitch.&lt;/p&gt;

&lt;p&gt;I first noticed it when I used lava buckets to start a bunch of furnaces and went to the Nether to refill the buckets. When I came back, this glitch had appeared. &lt;/p&gt;</comment>
                            <comment id="46951" author="bljat" created="Thu, 21 Feb 2013 23:04:30 +0100"  >&lt;p&gt;Confirmed in 13w07a. Just a visuall glitch with the burn time indicator, the burning process is correctly finished after smelting the amount of items according to the fuel type.&lt;/p&gt;</comment>
                            <comment id="46895" author="unon1100" created="Thu, 21 Feb 2013 20:30:18 +0100"  >&lt;p&gt;Unable to reproduce. Please provide a step by step list on how to reproduce. ie:&lt;br/&gt;
1. do this&lt;br/&gt;
2. now this&lt;br/&gt;
3. and finally this&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10102">
                    <name>Duplicate</name>
                                                                <inwardlinks description="is duplicated by">
                                        <issuelink>
            <issuekey id="22862">MC-9288</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="27867">MC-12954</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="32217">MC-16379</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="38591">MC-19821</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="40633">MC-21643</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="43701">MC-24413</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="45246">MC-25812</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="47286">MC-27369</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="48465">MC-28309</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="48596">MC-28415</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="59693">MC-37534</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="73989">MC-48292</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="78663">MC-52555</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="181516">MC-120834</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="201062">MC-129851</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="282695">MC-169324</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="290299">MC-172513</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="342043">MC-191271</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="349346">MC-193199</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="352510">MC-194129</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="356097">MC-195242</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="370918">MC-199798</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="377425">MC-201776</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="387036">MC-205978</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="447898">MC-229700</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="484837">MC-242790</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="506249">MC-252883</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="540489">MC-264677</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="544063">MC-265797</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="553852">MC-269927</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10103">
                    <name>Relates</name>
                                            <outwardlinks description="relates to">
                                        <issuelink>
            <issuekey id="562638">MC-274088</issuekey>
        </issuelink>
                            </outwardlinks>
                                                                <inwardlinks description="relates to">
                                        <issuelink>
            <issuekey id="214924">MC-137146</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="45856">MC-26304</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="110895">MC-80938</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="539016">MC-264260</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                            <attachment id="124506" name="2016-09-19_14.59.18.png" size="148558" author="pokechu22" created="Tue, 20 Sep 2016 00:29:37 +0200"/>
                            <attachment id="546882" name="23w31a.png" size="212239" author="Darth Cobby" created="Tue, 8 Aug 2023 10:39:03 +0200"/>
                            <attachment id="22051" name="Snippet.txt" size="816" author="dimitriye98" created="Tue, 19 Feb 2013 05:05:40 +0100"/>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                    <customfield id="customfield_12800" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Area</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="12602"><![CDATA[Platform]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10701" key="com.atlassian.jira.plugin.system.customfieldtypes:datetime">
                        <customfieldname>CHK</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Thu, 21 Feb 2013 23:01:00 +0100</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11901" key="com.atlassian.jira.plugin.system.customfieldtypes:multiselect">
                        <customfieldname>Category</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="11802"><![CDATA[Networking]]></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>30.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_12200" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Mojang Priority</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="11702"><![CDATA[Normal]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        <customfield id="customfield_11600" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|i0lf8n:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_12201" key="com.atlassian.jira.plugin.system.customfieldtypes:datetime">
                        <customfieldname>Triaged Time</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Fri, 2 Oct 2020 09:12:20 +0200</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                </customfields>
    </item>
</channel>
</rss>