<!-- 
RSS generated by JIRA (9.12.2#9120002-sha1:301bf498dd45d800842af0b84230f1bb58606c13) at Sun Jan 12 12:18:25 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-8631] Hopper Loop starts skipping Hoppers</title>
                <link>https://bugs.mojang.com/browse/MC-8631</link>
                <project id="10400" key="MC">Minecraft: Java Edition</project>
                    <description>&lt;p&gt;I created a loop of 6 hoppers, all attached to the one next to them and put one item in this loop. Next to each hopper is a comparator to display where the item currently is.&lt;br/&gt;
A block with redstone on it is on top of each hopper to start and stop them giving the item around. (See screenshot for setup)&lt;/p&gt;

&lt;p&gt;The goal was to create a simple and compact clock, which can be locked on one position by a lever.&lt;br/&gt;
This works for some time, but after a few uses, it starts randomly skipping hoppers until the item only gets swapped between two hoppers, even if they aren&apos;t next to each other.&lt;br/&gt;
Re-placing the hoppers will temporarily fix this.&lt;/p&gt;</description>
                <environment>Windows 7 64Bit, Java 7.0.90.5 64Bit</environment>
        <key id="21592">MC-8631</key>
            <summary>Hopper Loop starts skipping Hoppers</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="3">Duplicate</resolution>
                                        <assignee username="-1">Unassigned</assignee>
                                    <reporter username="malik1211">Dennis M&#252;ller</reporter>
                        <labels>
                            <label>hopper</label>
                            <label>redstone</label>
                    </labels>
                <created>Mon, 28 Jan 2013 23:55:38 +0100</created>
                <updated>Sun, 3 May 2015 06:19:50 +0200</updated>
                            <resolved>Sun, 3 Feb 2013 01:16:03 +0100</resolved>
                                    <version>Snapshot 13w04a</version>
                    <version>Snapshot 13w05a</version>
                                                                        <votes>1</votes>
                                    <watches>1</watches>
                                                                            <comments>
                            <comment id="67811" author="malacvadasz" created="Wed, 22 May 2013 15:56:46 +0200"  >&lt;p&gt;I set up a lighthouse with two hopper circuits, and they behave unpredictably, skipping hoppers and sometimes going slower. Here are the pictures:&lt;br/&gt;
The setup: &lt;a href=&quot;http://prntscr.com/163zzb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://prntscr.com/163zzb&lt;/a&gt;&lt;br/&gt;
In action: &lt;a href=&quot;http://prntscr.com/16406o&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://prntscr.com/16406o&lt;/a&gt;&lt;br/&gt;
Two minutes later: &lt;a href=&quot;http://prntscr.com/1640de&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://prntscr.com/1640de&lt;/a&gt;&lt;br/&gt;
Please Mojang fix this bug.&lt;/p&gt;</comment>
                            <comment id="42986" author="bljat" created="Sun, 3 Feb 2013 01:16:03 +0100"  >&lt;p&gt;Duplicate of &lt;a href=&quot;https://bugs.mojang.com/browse/MC-8457&quot; title=&quot;Chest sometimes doesn&amp;#39;t activate Redstone Comparator when Hopper is below it&quot; class=&quot;issue-link&quot; data-issue-key=&quot;MC-8457&quot;&gt;MC-8457&lt;/a&gt;.&lt;/p&gt;</comment>
                            <comment id="42280" author="grygrflzr" created="Fri, 1 Feb 2013 11:47:57 +0100"  >&lt;p&gt;Can finally replicate on 13w05a. Added to &lt;em&gt;Affected Versions&lt;/em&gt;.&lt;/p&gt;</comment>
                            <comment id="41558" author="kimitsu" created="Thu, 31 Jan 2013 09:59:38 +0100"  >&lt;p&gt;On the other hand, a hopper and all his adjanced blocks count up to 7, so I can see what Mojang tried to do here, but, since it actually doesn&apos;t work, maybe it is a bug after all.&lt;br/&gt;
My formula for initial timer setting would be (x + y*2 + z*3) mod 7&lt;br/&gt;
What&apos;s their&apos;s?&lt;/p&gt;</comment>
                            <comment id="41554" author="kimitsu" created="Thu, 31 Jan 2013 09:52:16 +0100"  >&lt;p&gt;The underlying problem is per hoppers design, they have an internal timer that counts to 7 ticks and then moves the items. This timer&apos;s initial value is set based on hopper coordinates. If two adjanced hoppers happen to have this timer go off simultaniously, the order in which they are processed depends solely on their order in some hash. That means hopper A might put items in hopper B, and hopper B will put items in hopper C, all in 1 tick. The problem manifests itself, usually, after chunk reloading, because placing hoppers by hand adds more randomness to the timer counter. I&apos;m not sure if redstone signal will reset these timers, I personally think it will not, but it&apos;s a possibility too.&lt;br/&gt;
The workaround here would be to use comparator output from a hopper, invert it, and lock the same hopper with it, to make sure that hoppers go off one at a time.&lt;/p&gt;</comment>
                            <comment id="40831" author="maysonh" created="Tue, 29 Jan 2013 02:46:02 +0100"  >&lt;p&gt;I had a similar issue with a hopper feeding into a dropper that was being powered on and off via a pulsar and underneath that dropper was another hopper. Items skipped the dropper.&lt;/p&gt;</comment>
                            <comment id="40827" author="malik1211" created="Tue, 29 Jan 2013 02:15:27 +0100"  >&lt;p&gt;Here are three screenshots of the exact setup I use.&lt;br/&gt;
The clocks serve as randomizers and feed into AND Gates to create a slot machine.&lt;br/&gt;
The error occurs in all 3 clocks after a few minutes of usage, both in single-player and LAN-mode.&lt;/p&gt;</comment>
                            <comment id="40824" author="grygrflzr" created="Tue, 29 Jan 2013 01:58:44 +0100"  >&lt;p&gt;Cannot replicate after toggling lever several times.&lt;br/&gt;
Please provide additional information, so we can better help with your problem. Was this a single player or multi-player/LAN game?&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10102">
                    <name>Duplicate</name>
                                            <outwardlinks description="duplicates">
                                        <issuelink>
            <issuekey id="21384">MC-8457</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                    </issuelinks>
                <attachments>
                            <attachment id="20160" name="Setup 1.png" size="1361629" author="malik1211" created="Tue, 29 Jan 2013 02:15:27 +0100"/>
                            <attachment id="20161" name="Setup 2.png" size="1272569" author="malik1211" created="Tue, 29 Jan 2013 02:15:27 +0100"/>
                            <attachment id="20162" name="Setup 3.png" size="1833117" author="malik1211" created="Tue, 29 Jan 2013 02:15:27 +0100"/>
                            <attachment id="20156" name="hopper_loop_bug_setup.png" size="399269" author="malik1211" created="Mon, 28 Jan 2013 23:55:38 +0100"/>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                <customfield id="customfield_10701" key="com.atlassian.jira.plugin.system.customfieldtypes:datetime">
                        <customfieldname>CHK</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Sat, 2 May 2015 03:38:00 +0200</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_10501" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Game Mode</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10305"><![CDATA[Creative]]></customfieldvalue>

                        </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|i0j3ev:</customfieldvalue>

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