<!-- 
RSS generated by JIRA (9.12.2#9120002-sha1:301bf498dd45d800842af0b84230f1bb58606c13) at Sun Jan 12 12:17:06 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-8231] Mycelium and podzol cannot be tilled with hoes</title>
                <link>https://bugs.mojang.com/browse/MC-8231</link>
                <project id="10400" key="MC">Minecraft: Java Edition</project>
                    <description>&lt;h3&gt;&lt;a name=&quot;TheBug%3A&quot;&gt;&lt;/a&gt;&lt;b&gt;The Bug:&lt;/b&gt;&lt;/h3&gt;

&lt;p&gt;Mycelium and podzol cannot be tilled with hoes.&lt;/p&gt;
&lt;h3&gt;&lt;a name=&quot;StepstoReproduce%3A&quot;&gt;&lt;/a&gt;&lt;b&gt;Steps to Reproduce:&lt;/b&gt;&lt;/h3&gt;
&lt;ol&gt;
	&lt;li&gt;Build the setup as shown in the attachment below. &lt;span class=&quot;nobr&quot;&gt;&lt;a href=&quot;https://bugs.mojang.com/secure/attachment/446687/446687_setup.png&quot; title=&quot;setup.png attached to MC-8231&quot;&gt;setup.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;/li&gt;
	&lt;li&gt;Obtain a hoe and use it on all six blocks.&lt;/li&gt;
	&lt;li&gt;Take note as to what blocks you can use the hoe on and what blocks you can&apos;t.&lt;/li&gt;
&lt;/ol&gt;


&lt;h3&gt;&lt;a name=&quot;ObservedBehavior%3A&quot;&gt;&lt;/a&gt;&lt;b&gt;Observed Behavior:&lt;/b&gt;&lt;/h3&gt;

&lt;p&gt;Mycelium and podzol cannot be tilled with hoes.&lt;/p&gt;
&lt;h3&gt;&lt;a name=&quot;ExpectedBehavior%3A&quot;&gt;&lt;/a&gt;&lt;b&gt;Expected Behavior:&lt;/b&gt;&lt;/h3&gt;

&lt;p&gt;Mycelium and podzol would be able to be tilled with hoes.&lt;/p&gt;
&lt;h3&gt;&lt;a name=&quot;CodeAnalysis%3A&quot;&gt;&lt;/a&gt;&lt;b&gt;Code Analysis:&lt;/b&gt;&lt;/h3&gt;

&lt;p&gt;Code analysis by &lt;a href=&quot;https://bugs.mojang.com/secure/ViewProfile.jspa?name=Avoma&quot; class=&quot;user-hover&quot; rel=&quot;Avoma&quot;&gt;Avoma&lt;/a&gt; can be found below.&lt;/p&gt;

&lt;p&gt;The following is based on a decompiled version of Minecraft 1.18.1 using MCP-Reborn.&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;net.minecraft.world.item.HoeItem.java&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; &lt;span class=&quot;code-keyword&quot;&gt;class &lt;/span&gt;HoeItem &lt;span class=&quot;code-keyword&quot;&gt;extends&lt;/span&gt; DiggerItem {
 &#160; &lt;span class=&quot;code-keyword&quot;&gt;protected&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;static&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;final&lt;/span&gt; Map&amp;lt;Block, Pair&amp;lt;Predicate&amp;lt;UseOnContext&amp;gt;, Consumer&amp;lt;UseOnContext&amp;gt;&amp;gt;&amp;gt; TILLABLES = Maps.newHashMap(ImmutableMap.of(Blocks.GRASS_BLOCK, Pair.of(HoeItem::onlyIfAirAbove, changeIntoState(Blocks.FARMLAND.defaultBlockState())), Blocks.DIRT_PATH, Pair.of(HoeItem::onlyIfAirAbove, changeIntoState(Blocks.FARMLAND.defaultBlockState())), Blocks.DIRT, Pair.of(HoeItem::onlyIfAirAbove, changeIntoState(Blocks.FARMLAND.defaultBlockState())), Blocks.COARSE_DIRT, Pair.of(HoeItem::onlyIfAirAbove, changeIntoState(Blocks.DIRT.defaultBlockState())), Blocks.ROOTED_DIRT, Pair.of(($$0) -&amp;gt; {
      &lt;span class=&quot;code-keyword&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;;
   }, changeIntoStateAndDropItem(Blocks.DIRT.defaultBlockState(), Items.HANGING_ROOTS))));
   ...&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;If we look at the above class, we can see that you can only use hoes on grass blocks, dirt paths, dirt, coarse dirt, and rooted dirt. Both mycelium and podzol aren&apos;t included within this particular piece of code, resulting in this problem occurring.&lt;/p&gt;
&lt;h3&gt;&lt;a name=&quot;PotentialFix%3A&quot;&gt;&lt;/a&gt;&lt;b&gt;Potential Fix:&lt;/b&gt;&lt;/h3&gt;

&lt;p&gt;Simply adding that mycelium and podzol can be tilled with hoes to this piece of code should resolve this problem. The correct line of code within its class should look something like the following:&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;net.minecraft.world.item.HoeItem.java&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; &lt;span class=&quot;code-keyword&quot;&gt;class &lt;/span&gt;HoeItem &lt;span class=&quot;code-keyword&quot;&gt;extends&lt;/span&gt; DiggerItem {
   &lt;span class=&quot;code-keyword&quot;&gt;protected&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;static&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;final&lt;/span&gt; Map&amp;lt;Block, Pair&amp;lt;Predicate&amp;lt;UseOnContext&amp;gt;, Consumer&amp;lt;UseOnContext&amp;gt;&amp;gt;&amp;gt; TILLABLES = Maps.newHashMap(ImmutableMap.of(Blocks.GRASS_BLOCK, Pair.of(HoeItem::onlyIfAirAbove, changeIntoState(Blocks.FARMLAND.defaultBlockState())), Blocks.DIRT_PATH, Pair.of(HoeItem::onlyIfAirAbove, changeIntoState(Blocks.FARMLAND.defaultBlockState())), Blocks.DIRT, Pair.of(HoeItem::onlyIfAirAbove, changeIntoState(Blocks.FARMLAND.defaultBlockState())), Blocks.MYCELIUM, Pair.of(HoeItem::onlyIfAirAbove, changeIntoState(Blocks.FARMLAND.defaultBlockState())), Blocks.PODZOL, Pair.of(HoeItem::onlyIfAirAbove, changeIntoState(Blocks.FARMLAND.defaultBlockState())), Blocks.COARSE_DIRT, Pair.of(HoeItem::onlyIfAirAbove, changeIntoState(Blocks.DIRT.defaultBlockState())), Blocks.ROOTED_DIRT, Pair.of(($$0) -&amp;gt; {
      &lt;span class=&quot;code-keyword&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;;
   }, changeIntoStateAndDropItem(Blocks.DIRT.defaultBlockState(), Items.HANGING_ROOTS))));
   ...&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</description>
                <environment></environment>
        <key id="21148">MC-8231</key>
            <summary>Mycelium and podzol cannot be tilled with hoes</summary>
                <type id="1" iconUrl="https://bugs.mojang.com/secure/viewavatar?size=xsmall&amp;avatarId=18903&amp;avatarType=issuetype">Bug</type>
                                    <status id="4" iconUrl="https://bugs.mojang.com/images/icons/statuses/reopened.png" description="This issue was once resolved, but the resolution was deemed incorrect. From here issues are either marked assigned or resolved.">Reopened</status>
                    <statusCategory id="2" key="new" colorName="default"/>
                                    <resolution id="-1">Unresolved</resolution>
                                        <assignee username="-1">Unassigned</assignee>
                                    <reporter username="Avoma">[Mod] Avoma</reporter>
                        <labels>
                            <label>mycelium</label>
                            <label>podzol</label>
                    </labels>
                <created>Thu, 24 Jan 2013 21:36:14 +0100</created>
                <updated>Sat, 7 Dec 2024 14:40:16 +0100</updated>
                                            <version>Minecraft 1.4.6</version>
                    <version>Minecraft 1.4.7</version>
                    <version>Snapshot 13w03a</version>
                    <version>Snapshot 13w04a</version>
                    <version>1.15.2</version>
                    <version>20w08a</version>
                    <version>20w13b</version>
                    <version>20w14a</version>
                    <version>20w15a</version>
                    <version>20w16a</version>
                    <version>20w17a</version>
                    <version>20w18a</version>
                    <version>20w19a</version>
                    <version>20w20b</version>
                    <version>20w21a</version>
                    <version>20w22a</version>
                    <version>1.16 Pre-release 1</version>
                    <version>1.16 Pre-release 2</version>
                    <version>1.16 Pre-release 3</version>
                    <version>1.16 Pre-release 4</version>
                    <version>1.16 Pre-release 5</version>
                    <version>1.16 Pre-release 7</version>
                    <version>1.16 Pre-release 8</version>
                    <version>1.16 Release Candidate 1</version>
                    <version>1.16</version>
                    <version>1.16.1</version>
                    <version>20w27a</version>
                    <version>20w28a</version>
                    <version>20w29a</version>
                    <version>20w30a</version>
                    <version>1.16.2 Pre-release 1</version>
                    <version>1.16.2 Pre-release 2</version>
                    <version>1.16.2 Release Candidate 1</version>
                    <version>1.16.2 Release Candidate 2</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 Release Candidate 1</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>21w07a</version>
                    <version>21w08a</version>
                    <version>21w08b</version>
                    <version>21w10a</version>
                    <version>21w11a</version>
                    <version>21w13a</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 Release Candidate 2</version>
                    <version>1.17</version>
                    <version>1.17.1</version>
                    <version>21w40a</version>
                    <version>21w41a</version>
                    <version>21w42a</version>
                    <version>21w44a</version>
                    <version>1.18 Pre-release 1</version>
                    <version>1.18 Release Candidate 3</version>
                    <version>1.18</version>
                    <version>1.18.1</version>
                    <version>22w03a</version>
                    <version>22w05a</version>
                    <version>22w07a</version>
                    <version>1.18.2 Release Candidate 1</version>
                    <version>1.18.2</version>
                    <version>22w12a</version>
                    <version>22w14a</version>
                    <version>1.19 Pre-release 1</version>
                    <version>1.19 Release Candidate 2</version>
                    <version>1.19</version>
                    <version>1.19.1</version>
                    <version>1.19.2</version>
                    <version>22w43a</version>
                    <version>1.19.3</version>
                    <version>1.19.4</version>
                    <version>1.20</version>
                    <version>1.20.1</version>
                    <version>23w33a</version>
                    <version>24w11a</version>
                    <version>24w20a</version>
                    <version>1.21</version>
                    <version>1.21.1</version>
                    <version>24w36a</version>
                    <version>1.21.2 Pre-Release 3</version>
                    <version>1.21.3</version>
                    <version>1.21.4</version>
                                                                        <votes>32</votes>
                                    <watches>16</watches>
                                                                            <comments>
                            <comment id="1276590" author="awesoman3000" created="Fri, 25 Aug 2023 05:45:40 +0200"  >&lt;p&gt;Related to &lt;a href=&quot;https://bugs.mojang.com/browse/MC-204127&quot; title=&quot;Farmland cannot be turned into dirt paths with a shovel&quot; class=&quot;issue-link&quot; data-issue-key=&quot;MC-204127&quot;&gt;MC-204127&lt;/a&gt;.&lt;/p&gt;</comment>
                            <comment id="1169207" author="JIRAUSER567036" created="Sun, 5 Jun 2022 23:41:23 +0200"  >&lt;p&gt;Can confirm in 1.19-rc2&lt;/p&gt;</comment>
                            <comment id="1088139" author="JIRAUSER566325" created="Mon, 11 Oct 2021 11:53:33 +0200"  >&lt;p&gt;Can confirm this behavior in 21w40a. Here are some extra details regarding this problem.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;The Bug:&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;Mycelium and podzol cannot be tilled with hoes.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Steps to Reproduce:&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;Build the setup as shown in the attachment below. &lt;span class=&quot;nobr&quot;&gt;&lt;a href=&quot;https://bugs.mojang.com/secure/attachment/446687/446687_setup.png&quot; title=&quot;setup.png attached to MC-8231&quot;&gt;setup.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;/li&gt;
	&lt;li&gt;Obtain a hoe and use it on all six blocks.&lt;/li&gt;
	&lt;li&gt;Take note as to what blocks you can use the hoe on and what blocks you can&apos;t.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;&lt;b&gt;Observed Behavior:&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;Mycelium and podzol cannot be tilled with hoes.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Expected Behavior:&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;Mycelium and podzol would be able to be tilled with hoes.&lt;/p&gt;</comment>
                            <comment id="1049603" author="JIRAUSER648933" created="Tue, 3 Aug 2021 02:28:04 +0200"  >&lt;p&gt;It might have been intended in the past, but with the changes to dirt path in 1.17 it has become more illogical that mycelium and podzol cannot be tilled, since they&apos;re dirt variants.&lt;/p&gt;</comment>
                            <comment id="1049601" author="JIRAUSER626071" created="Tue, 3 Aug 2021 02:20:35 +0200"  >&lt;p&gt;Why is it intended?It still won&apos;t stop players turning it into farmland.&lt;/p&gt;

&lt;p&gt;Way No.1:&lt;/p&gt;

&lt;p&gt;(1)use shovel on it to turn it into dirt path.(old name:grass path)&lt;/p&gt;

&lt;p&gt;(2)till the dirt path&lt;/p&gt;

&lt;p&gt;Way No.2:&lt;/p&gt;

&lt;p&gt;(1)Break with hand&lt;/p&gt;

&lt;p&gt;(2)Place the dirt block&lt;/p&gt;

&lt;p&gt;(3)till the dirt block&lt;/p&gt;</comment>
                            <comment id="1014038" author="JIRAUSER591481" created="Sun, 13 Jun 2021 10:31:09 +0200"  >&lt;p&gt;This is intended I think.&lt;/p&gt;

&lt;p&gt;Sources:&#160;&lt;a href=&quot;https://www.minecraft.net/en-us/article/block-week-mycelium&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://www.minecraft.net/en-us/article/block-week-mycelium&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.minecraft.net/en-us/article/block-week-podzol&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://www.minecraft.net/en-us/article/block-week-podzol&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="912657" author="JIRAUSER566325" created="Thu, 4 Feb 2021 19:45:42 +0100"  >&lt;p&gt;Can confirm in 21w05b.&lt;/p&gt;</comment>
                            <comment id="834506" author="awesoman3000" created="Wed, 4 Nov 2020 22:55:46 +0100"  >&lt;p&gt;Considerably more important given the recent grass path changes&lt;/p&gt;</comment>
                            <comment id="820535" author="JIRAUSER550478" created="Sat, 3 Oct 2020 14:53:27 +0200"  >&lt;p&gt;Can someone update the description ? The way it is formulated is kind of weird and cringy :/&lt;/p&gt;</comment>
                            <comment id="819941" author="bugsbugsbugs" created="Thu, 1 Oct 2020 21:03:32 +0200"  >&lt;p&gt;I&#8217;d like to request ownership of this ticket. The original reporter hasn&#8217;t been active since March 2013.&lt;/p&gt;</comment>
                            <comment id="638752" author="violine1101" created="Mon, 24 Feb 2020 10:50:28 +0100"  >&lt;p&gt;Reopened, as the wiki is not a valid WAI source (or at least not anymore)&lt;/p&gt;</comment>
                            <comment id="247471" author="ziggurism" created="Sat, 5 Sep 2015 16:44:17 +0200"  >&lt;p&gt;This bug also applies to podzol, which is also not tillable. Also works as designed, I suppose.&lt;/p&gt;</comment>
                            <comment id="39502" author="kumasasa" created="Thu, 24 Jan 2013 21:41:11 +0100"  >&lt;p&gt;Mycelium is not tillable, see &lt;a href=&quot;http://www.minecraftwiki.net/wiki/Mycelium&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://www.minecraftwiki.net/wiki/Mycelium&lt;/a&gt;&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10102">
                    <name>Duplicate</name>
                                                                <inwardlinks description="is duplicated by">
                                        <issuelink>
            <issuekey id="26681">MC-11962</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="504398">MC-252304</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10103">
                    <name>Relates</name>
                                            <outwardlinks description="relates to">
                                        <issuelink>
            <issuekey id="562495">MCPE-183569</issuekey>
        </issuelink>
                            </outwardlinks>
                                                                <inwardlinks description="relates to">
                                        <issuelink>
            <issuekey id="410016">MC-213770</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                            <attachment id="380177" name="MC-8231.mp4" size="3132094" author="Avoma" created="Mon, 15 Feb 2021 15:03:35 +0100"/>
                            <attachment id="446687" name="setup.png" size="605317" author="Avoma" created="Mon, 11 Oct 2021 11:53:08 +0200"/>
                            <attachment id="364819" name="tilling grasslike blocks.png" size="244475" author="Jack_McKalling" created="Sat, 2 Jan 2021 22:14:45 +0100"/>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                <customfield id="customfield_11500" key="com.atlassian.jira.plugin.system.customfieldtypes:textfield">
                        <customfieldname>ADO</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1261971</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                        <customfield id="customfield_12800" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Area</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="12601"><![CDATA[Gameplay]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10701" key="com.atlassian.jira.plugin.system.customfieldtypes:datetime">
                        <customfieldname>CHK</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Mon, 24 Feb 2020 10:51:00 +0100</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_11901" key="com.atlassian.jira.plugin.system.customfieldtypes:multiselect">
                        <customfieldname>Category</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="11605"><![CDATA[Block states]]></customfieldvalue>
    <customfieldvalue key="11626"><![CDATA[Items]]></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>2.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|i02j2f:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_12201" key="com.atlassian.jira.plugin.system.customfieldtypes:datetime">
                        <customfieldname>Triaged Time</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Thu, 9 Dec 2021 09:03:41 +0100</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                </customfields>
    </item>
</channel>
</rss>