<!-- 
RSS generated by JIRA (9.12.2#9120002-sha1:301bf498dd45d800842af0b84230f1bb58606c13) at Sun Jan 12 11:57:16 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-2265] Leaving a minecart places you outside of the trackline</title>
                <link>https://bugs.mojang.com/browse/MC-2265</link>
                <project id="10400" key="MC">Minecraft: Java Edition</project>
                    <description>&lt;p&gt;When you leave the minecart for what reason soever, you will be placed outsite of the fence line, with no chance to get back in the minecart. &lt;br/&gt;
Only destroing the fence or placing a block to jump over the fence helps.&lt;/p&gt;</description>
                <environment>A single track minecartrail that is protect from mobs via fenceline on both sides</environment>
        <key id="13671">MC-2265</key>
            <summary>Leaving a minecart places you outside of the trackline</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="kleinemax">Max E.</reporter>
                        <labels>
                    </labels>
                <created>Sun, 4 Nov 2012 21:23:50 +0100</created>
                <updated>Sun, 3 May 2015 06:24:14 +0200</updated>
                            <resolved>Thu, 15 Nov 2012 19:31:04 +0100</resolved>
                                    <version>Minecraft 1.4.2</version>
                                                                        <votes>2</votes>
                                    <watches>3</watches>
                                                                            <comments>
                            <comment id="21924" author="kleinemax" created="Thu, 15 Nov 2012 22:43:32 +0100"  >&lt;p&gt;Thx, when i searched i was simply too exact. &quot;minecart leaving fence&quot; was my searchterm &lt;img class=&quot;emoticon&quot; src=&quot;https://bugs.mojang.com/images/icons/emoticons/biggrin.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="21847" author="mustek" created="Thu, 15 Nov 2012 19:31:04 +0100"  >&lt;p&gt;Duplicate of: &lt;a href=&quot;https://bugs.mojang.com/browse/MC-1489&quot; title=&quot;Dismounting a horse with a fence on the player&amp;#39;s right leaves the player on the wrong side of the fence&quot; class=&quot;issue-link&quot; data-issue-key=&quot;MC-1489&quot;&gt;&lt;del&gt;MC-1489&lt;/del&gt;&lt;/a&gt; - Please use the &lt;a href=&quot;https://mojang.atlassian.net/secure/IssueNavigator.jspa?&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;search function&lt;/a&gt; to see if your bug has already been submitted.&lt;br/&gt;
Currently 27% of tickets are being closed as duplicate.&lt;/p&gt;</comment>
                            <comment id="21552" author="kleinemax" created="Wed, 14 Nov 2012 22:33:58 +0100"  >&lt;p&gt;I made a video, its in german but it shows the error in the first 5 min. Maybe this helps understanding it.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=6a-WhCd3ovk&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://www.youtube.com/watch?v=6a-WhCd3ovk&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="21484" author="alcr" created="Wed, 14 Nov 2012 18:22:20 +0100"  >&lt;p&gt;Priority minor is not adequate.&lt;/p&gt;

&lt;p&gt;Where to patch: (using MinecraftCoderPack class and methods names)&lt;/p&gt;

&lt;p&gt;Entity.java&lt;/p&gt;

&lt;p&gt;public void unmountEntity(Entity par1Entity)&lt;/p&gt;

&lt;p&gt;There are two loops (on X and Z axis)&lt;br/&gt;
for (double dX = -1.5D; dX &amp;lt; 2.0D; ++dX)&lt;br/&gt;
for (double dZ = -1.5D; dZ &amp;lt; 2.0D; ++dZ)&lt;br/&gt;
inside these loops checked for emptiness eight blocks around player and &lt;em&gt;one_level_up&lt;/em&gt; - see getOffsetBoundingBox(dX, 1.0D, dZ);&lt;br/&gt;
Block above the fence is empty, and player placed in relative coords (-1.5, 1.0, -1.5) to the north or to the west. It is exactly on wrong side of the fence.&lt;/p&gt;

&lt;p&gt;Solution:&lt;br/&gt;
1. Add outer loop for (double dY = 0D; dY &amp;lt; 1.5D; ++dY) // optional, but i think it is normal to exit from minecart to the ground, not into air.&lt;br/&gt;
2. Make loops bounds smaller: for (double d = -1.0D; d &amp;lt; 1.1D; ++d) // important. With this values exiting is also on sibling block, but if it is something like fence - player will stand on it.&lt;/p&gt;

&lt;p&gt;P.S.: Sorry for ugly english&lt;br/&gt;
Also it is duplicate of #&lt;a href=&quot;https://bugs.mojang.com/browse/MC-1489&quot; title=&quot;Dismounting a horse with a fence on the player&amp;#39;s right leaves the player on the wrong side of the fence&quot; class=&quot;issue-link&quot; data-issue-key=&quot;MC-1489&quot;&gt;&lt;del&gt;MC-1489&lt;/del&gt;&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="19757" author="caiobrz" created="Fri, 9 Nov 2012 00:25:10 +0100"  >&lt;p&gt;It does happen sometimes (not related to the fence), but I&apos;m not sure how this is a bug. In my case I have the final line hitting a wall (with a button, last rail is powered) and a sigh on the RIGHT side (track is W&amp;lt;-&amp;gt;E, wall on W, sign on N) and when I leave the cart, it places me on the block NW, which is the farthest possible lol (I half expected it to place me on the rail before it, E of where the card is, or at least on the adjascent free block at S, but it put on on NW, go figure)&lt;/p&gt;</comment>
                            <comment id="18403" author="kleinemax" created="Mon, 5 Nov 2012 14:37:06 +0100"  >&lt;p&gt;Well very clever, but I place the fence because it keeps the mobs away from walking on the track and also my self save from shooting skeletons. Also I don&apos;t want tracks that are high in the air, messing up the landscape&lt;/p&gt;</comment>
                            <comment id="18379" author="fuj1n" created="Mon, 5 Nov 2012 12:25:08 +0100"  >&lt;p&gt;Well, Don&apos;t Place A Fence Then.&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10102">
                    <name>Duplicate</name>
                                            <outwardlinks description="duplicates">
                                        <issuelink>
            <issuekey id="12820">MC-1489</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                                                        <customfield id="customfield_10500" key="com.atlassian.jira.plugin.system.customfieldtypes:radiobuttons">
                        <customfieldname>Confirmation Status</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10300"><![CDATA[Unconfirmed]]></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|i01x9j:</customfieldvalue>

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