<!-- 
RSS generated by JIRA (9.12.2#9120002-sha1:301bf498dd45d800842af0b84230f1bb58606c13) at Sun Jan 12 11:50:11 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-190] Misaligned textures on south and east faces for non-full blocks</title>
                <link>https://bugs.mojang.com/browse/MC-190</link>
                <project id="10400" key="MC">Minecraft: Java Edition</project>
                    <description>&lt;p&gt;&lt;b&gt;Description&lt;/b&gt;:&lt;blockquote&gt;
&lt;p&gt;Texture on all non-full width non-symmetrical blocks on south and east sides are misaligned, like :&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;Door&lt;/li&gt;
	&lt;li&gt;trapdoor&lt;/li&gt;
	&lt;li&gt;Fences&lt;/li&gt;
	&lt;li&gt;Fencegates&lt;/li&gt;
	&lt;li&gt;Wall&lt;/li&gt;
	&lt;li&gt;Buttons&lt;/li&gt;
	&lt;li&gt;Levers&lt;/li&gt;
	&lt;li&gt;Stairs&lt;/li&gt;
	&lt;li&gt;hopper&lt;/li&gt;
	&lt;li&gt;Tripwire hook&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;This does not affect some blocks like cocoa, because they don&apos;t use the standard block method.&lt;/p&gt;

&lt;p&gt;With that bug, it&apos;s very difficult to make HD texture pack since these details are near invisible with 16x packs but not on 64x packs for example.&lt;/p&gt;&lt;/blockquote&gt;&lt;br/&gt;
&lt;b&gt;Expected&lt;/b&gt;:&lt;blockquote&gt;&lt;p&gt;Having textures correctly aligned, like on Ax.png screenshots.&lt;/p&gt;&lt;/blockquote&gt;&lt;br/&gt;
&lt;b&gt;Actual&lt;/b&gt;:&lt;blockquote&gt;&lt;p&gt;Textures are misaligned, like on Bx.png screenshots.&lt;/p&gt;&lt;/blockquote&gt;&lt;br/&gt;
&lt;b&gt;Solution&lt;/b&gt;:&lt;blockquote&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;RenderBlocks.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;RenderBlocks {
    &lt;span class=&quot;code-keyword&quot;&gt;public&lt;/span&gt; void renderEastFace(Block par1Block, &lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt; par2, &lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt; par4, &lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt; par6, Icon texture) {
        Tessellator tessellator = Tessellator.instance;
        &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (&lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.hasOverrideBlockTexture()) {
            texture = &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.overrideBlockTexture;
        }
        /* START OF OLD CODE *
        &lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt; var10 = (&lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt;)texture.getInterpolatedU(&lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.renderMinX * 16.0D);
        &lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt; var12 = (&lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt;)texture.getInterpolatedU(&lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.renderMaxX * 16.0D);
        * END OF OLD CODE */
        &lt;span class=&quot;code-comment&quot;&gt;/* START OF NEW CODE */&lt;/span&gt;
        &lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt; var10 = (&lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt;)texture.getInterpolatedU(16.0D - &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.renderMaxX * 16.0D);
        &lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt; var12 = (&lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt;)texture.getInterpolatedU(16.0D - &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.renderMinX * 16.0D);
        &lt;span class=&quot;code-comment&quot;&gt;/* END OF NEW CODE */&lt;/span&gt;
        &lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt; var14 = (&lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt;)texture.getInterpolatedV(16.0D - &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.renderMaxY * 16.0D);
        &lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt; var16 = (&lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt;)texture.getInterpolatedV(16.0D - &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.renderMinY * 16.0D);
        &lt;span class=&quot;code-comment&quot;&gt;/* ... */&lt;/span&gt;
    }
    &lt;span class=&quot;code-keyword&quot;&gt;public&lt;/span&gt; void renderSouthFace(Block par1Block, &lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt; par2, &lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt; par4, &lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt; par6, Icon texture) {
        Tessellator tessellator = Tessellator.instance;
        &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (&lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.hasOverrideBlockTexture()) {
            texture = &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.overrideBlockTexture;
        }
        /* START OF OLD CODE *
        &lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt; var10 = (&lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt;)texture.getInterpolatedU(&lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.renderMinZ * 16.0D);
        &lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt; var12 = (&lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt;)texture.getInterpolatedU(&lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.renderMaxZ * 16.0D);
        * END OF OLD CODE */
        &lt;span class=&quot;code-comment&quot;&gt;/* START OF NEW CODE */&lt;/span&gt;
        &lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt; var10 = (&lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt;)texture.getInterpolatedU(16.0D - &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.renderMaxZ * 16.0D);
        &lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt; var12 = (&lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt;)texture.getInterpolatedU(16.0D - &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.renderMinZ * 16.0D);
        &lt;span class=&quot;code-comment&quot;&gt;/* END OF NEW CODE */&lt;/span&gt;
        &lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt; var14 = (&lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt;)texture.getInterpolatedV(16.0D - &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.renderMaxY * 16.0D);
        &lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt; var16 = (&lt;span class=&quot;code-object&quot;&gt;double&lt;/span&gt;)texture.getInterpolatedV(16.0D - &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt;.renderMinY * 16.0D);
        &lt;span class=&quot;code-comment&quot;&gt;/* ... */&lt;/span&gt;
    }
}&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/blockquote&gt;&lt;/p&gt;</description>
                <environment></environment>
        <key id="11441">MC-190</key>
            <summary>Misaligned textures on south and east faces for non-full blocks</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="TheMoogle">Mog (Ryan Holtz)</assignee>
                                    <reporter username="ypetremann">Yoann Petremann</reporter>
                        <labels>
                            <label>rendering</label>
                            <label>texture</label>
                    </labels>
                <created>Wed, 24 Oct 2012 22:50:00 +0200</created>
                <updated>Tue, 11 Aug 2020 20:38:07 +0200</updated>
                            <resolved>Mon, 25 Nov 2013 14:06:46 +0100</resolved>
                                    <version>Minecraft 1.4.2</version>
                    <version>Snapshot 13w02b</version>
                    <version>Snapshot 13w10a</version>
                    <version>Minecraft 1.5</version>
                    <version>Snapshot 13w18c</version>
                    <version>Snapshot 13w19a</version>
                    <version>Snapshot 13w21a</version>
                    <version>Snapshot 13w21b</version>
                    <version>Snapshot 13w22a</version>
                    <version>Snapshot 13w25a</version>
                    <version>Snapshot 13w25b</version>
                    <version>Snapshot 13w25c</version>
                    <version>Snapshot 13w26a</version>
                    <version>Minecraft 1.6</version>
                    <version>Minecraft 13w36a</version>
                    <version>Minecraft 13w38a</version>
                    <version>Minecraft 13w38c</version>
                    <version>Minecraft 13w39a</version>
                    <version>Minecraft 13w39b</version>
                    <version>Minecraft 13w41a</version>
                    <version>Minecraft 13w42b</version>
                    <version>Minecraft 13w43a</version>
                    <version>Minecraft 1.7.1</version>
                    <version>Minecraft 13w47c</version>
                                    <fixVersion>Minecraft 13w48a</fixVersion>
                                                        <votes>29</votes>
                                    <watches>10</watches>
                                                                            <comments>
                            <comment id="121178" author="ypetremann" created="Mon, 25 Nov 2013 16:41:27 +0100"  >&lt;p&gt;Can&apos;t wait for the snapshot to see, thanks in advance ...&lt;/p&gt;</comment>
                            <comment id="121163" author="themoogle" created="Mon, 25 Nov 2013 14:06:46 +0100"  >&lt;p&gt;Fixed properly for 1.7.3&lt;/p&gt;</comment>
                            <comment id="120393" author="ypetremann" created="Fri, 22 Nov 2013 02:01:12 +0100"  >&lt;p&gt;Please reopen since it has returned with the fix for &lt;a href=&quot;https://bugs.mojang.com/browse/MC-37106&quot; title=&quot;All the textures are flipped/mirrored on north/east sides of blocks&quot; class=&quot;issue-link&quot; data-issue-key=&quot;MC-37106&quot;&gt;&lt;del&gt;MC-37106&lt;/del&gt;&lt;/a&gt; (which was an effect to the fix of this).&lt;/p&gt;</comment>
                            <comment id="117009" author="ypetremann" created="Fri, 1 Nov 2013 15:28:20 +0100"  >&lt;p&gt;On obfuscated class, my patch apply on the methods c(Lxxx;DDDLyyy;&amp;#41;V and f(Lxxx;DDDLyyy;&amp;#41;V, so respectively the third and last renderFace methods.&lt;/p&gt;</comment>
                            <comment id="116891" author="ypetremann" created="Thu, 31 Oct 2013 16:46:23 +0100"  >&lt;p&gt;And finally Grum, Since for 6 month I used to play with my fixed version of minecraft, I&apos;ve not seen any bugs depending to this problem after fixing.&lt;/p&gt;</comment>
                            <comment id="116881" author="ypetremann" created="Thu, 31 Oct 2013 15:23:05 +0100"  >&lt;p&gt;I don&apos;t see why my solution is wrong, please show me by screenshots .&lt;/p&gt;

&lt;p&gt;My patcher said that the bug has not been fixed.&lt;/p&gt;

&lt;p&gt;I fact we don&apos;t see it anymore because you has inverted all textures for these faces, but your solution cause all textures to be inverted like beds sides ...&lt;/p&gt;

&lt;p&gt;In all cases, for me the bug is not fixed because your fix cause another bug.&lt;/p&gt;</comment>
                            <comment id="114810" author="_zombiehunter" created="Fri, 25 Oct 2013 14:15:36 +0200"  >&lt;p&gt;Thanks for fixing this, Grum &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="114808" author="grum" created="Fri, 25 Oct 2013 14:09:05 +0200"  >&lt;p&gt;The solution is actually wrong, but I&apos;ve fixed the issue nevertheless &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="113177" author="ypetremann" created="Mon, 21 Oct 2013 02:14:02 +0200"  >&lt;p&gt;bkw.class is a bugfix modification for Minecraft 13w42b for &lt;a href=&quot;https://bugs.mojang.com/browse/MC-15189&quot; title=&quot;Cobblestone Wall With Blocks On Top Shows Black Light On Its North Side With Maximum Smooth Lighting&quot; class=&quot;issue-link&quot; data-issue-key=&quot;MC-15189&quot;&gt;&lt;del&gt;MC-15189&lt;/del&gt;&lt;/a&gt; and &lt;a href=&quot;https://bugs.mojang.com/browse/MC-190&quot; title=&quot;Misaligned textures on south and east faces for non-full blocks&quot; class=&quot;issue-link&quot; data-issue-key=&quot;MC-190&quot;&gt;&lt;del&gt;MC-190&lt;/del&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Please make a custom 13w42b version and install that file in the jar file&lt;/p&gt;</comment>
                            <comment id="113169" author="ypetremann" created="Mon, 21 Oct 2013 00:30:45 +0200"  >&lt;p&gt;Ezekiel : This still concern the latest Minecraft version 13w42b, and supect that it would concern Minecraft version 1.7 because neither dinnerbone or jeb or anyone at Mojang is able to apply the proposed functionning solution. They know about the bug because dinnerbone have answer me on twitter but they thing they are not able to fix the problem, but I&apos;ve already fixed the problem.&lt;/p&gt;</comment>
                            <comment id="112808" author="ezekielelin" created="Sat, 19 Oct 2013 17:17:46 +0200"  >&lt;p&gt;Is this still a concern in the latest Minecraft version &lt;b&gt;13w42b&lt;/b&gt;? 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="104876" author="ypetremann" created="Fri, 20 Sep 2013 19:41:15 +0200"  >&lt;p&gt;With that bug, we know where are stairs.&lt;/p&gt;</comment>
                            <comment id="76650" author="ypetremann" created="Mon, 24 Jun 2013 19:01:29 +0200"  >&lt;p&gt;Confirmed for 13w26a !&lt;/p&gt;</comment>
                            <comment id="75675" author="ypetremann" created="Thu, 20 Jun 2013 20:38:52 +0200"  >&lt;p&gt;Still not resolved since the solution is explained ...&lt;/p&gt;</comment>
                            <comment id="69743" author="kuubaku" created="Thu, 30 May 2013 07:57:03 +0200"  >&lt;p&gt;@Yoann&lt;br/&gt;
Good job, thank you very much.&lt;/p&gt;</comment>
                            <comment id="69737" author="ypetremann" created="Thu, 30 May 2013 04:03:45 +0200"  >&lt;p&gt;Added screenshot for stairs&lt;/p&gt;</comment>
                            <comment id="69736" author="ypetremann" created="Thu, 30 May 2013 03:59:24 +0200"  >&lt;p&gt;Remplaced old screenshot with new ones&lt;/p&gt;</comment>
                            <comment id="69732" author="ypetremann" created="Thu, 30 May 2013 03:29:22 +0200"  >&lt;p&gt;Texture pack to fully test texture alignement.&lt;/p&gt;</comment>
                            <comment id="68616" author="_zombiehunter" created="Sat, 25 May 2013 11:10:24 +0200"  >&lt;p&gt;Would be nice to have this fixed. As you already mentioned, it&apos;s not very conspicuous in most 16x16 packs, but HD packs really would profit of better aligned textures on fences, etc. ...&lt;/p&gt;</comment>
                            <comment id="65142" author="ypetremann" created="Sun, 5 May 2013 20:02:13 +0200"  >&lt;p&gt;I&apos;ve posted a valid and tested solution for that problem, it does not seem to cause new glitches and it seems to fixes a common problem with all blocks that contain part that not 1 block width :&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;stairs&lt;/li&gt;
	&lt;li&gt;fences&lt;/li&gt;
	&lt;li&gt;wall&lt;/li&gt;
	&lt;li&gt;fence gate&lt;/li&gt;
	&lt;li&gt;button&lt;/li&gt;
	&lt;li&gt;levers&lt;/li&gt;
	&lt;li&gt;trapdoors&lt;br/&gt;
 ...&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="65125" author="ypetremann" created="Sun, 5 May 2013 16:51:39 +0200"  >&lt;p&gt;Still concern latest 13w18c and 1.5.2 versions ...&lt;/p&gt;</comment>
                            <comment id="49843" author="ypetremann" created="Tue, 5 Mar 2013 02:07:09 +0100"  >&lt;p&gt;Concern 13w10a ...&lt;/p&gt;</comment>
                            <comment id="36796" author="ypetremann" created="Mon, 14 Jan 2013 20:32:17 +0100"  >&lt;p&gt;Texture Pack for version &amp;gt; 13w02a&lt;/p&gt;</comment>
                            <comment id="36795" author="ypetremann" created="Mon, 14 Jan 2013 20:31:08 +0100"  >&lt;p&gt;The problem is still present in  13w02b, I have created a version of the texture pack for version 13w02a and above&lt;/p&gt;</comment>
                            <comment id="36784" author="bljat" created="Mon, 14 Jan 2013 19:51:53 +0100"  >&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="13246" author="ezekielelin" created="Thu, 25 Oct 2012 16:55:14 +0200"  >&lt;p&gt;Whats wrong&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10102">
                    <name>Duplicate</name>
                                                                <inwardlinks description="is duplicated by">
                                        <issuelink>
            <issuekey id="23373">MC-9654</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                            <issuelinktype id="10103">
                    <name>Relates</name>
                                                                <inwardlinks description="relates to">
                                        <issuelink>
            <issuekey id="59247">MC-37106</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                            <attachment id="30564" name="A1.png" size="93564" author="ypetremann" created="Thu, 30 May 2013 03:59:24 +0200"/>
                            <attachment id="30566" name="A2.png" size="104398" author="ypetremann" created="Thu, 30 May 2013 04:03:45 +0200"/>
                            <attachment id="30563" name="B1.png" size="90971" author="ypetremann" created="Thu, 30 May 2013 03:59:23 +0200"/>
                            <attachment id="30567" name="B2.png" size="104236" author="ypetremann" created="Thu, 30 May 2013 04:03:45 +0200"/>
                            <attachment id="30561" name="Test.zip" size="153038" author="ypetremann" created="Thu, 30 May 2013 03:29:22 +0200"/>
                            <attachment id="45183" name="bkw.class" size="114232" author="ypetremann" created="Mon, 21 Oct 2013 02:14:02 +0200"/>
                            <attachment id="41911" name="glitch.png" size="77310" author="ypetremann" created="Fri, 20 Sep 2013 19:41:15 +0200"/>
                            <attachment id="32529" name="misaligned.png" size="225771" author="ypetremann" created="Tue, 18 Jun 2013 04:54:29 +0200"/>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                <customfield id="customfield_10701" key="com.atlassian.jira.plugin.system.customfieldtypes:datetime">
                        <customfieldname>CHK</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Wed, 16 Jan 2013 22:24: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>1.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                <customfield id="customfield_11600" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|i0mosf:</customfieldvalue>

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