<!-- 
RSS generated by JIRA (9.12.2#9120002-sha1:301bf498dd45d800842af0b84230f1bb58606c13) at Sun Jan 12 12:26:24 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-11058] &#196;, &#214;,&#220; don&apos;t get recogniced by commandblock in @p[teams=&lt;teamname&gt;]</title>
                <link>https://bugs.mojang.com/browse/MC-11058</link>
                <project id="10400" key="MC">Minecraft: Java Edition</project>
                    <description>&lt;p&gt;When using the specifier teams=&amp;lt;teamname&amp;gt; the commandblock did not recognice the letter &#196;, &#214;, &#220;...&lt;br/&gt;
I hope I was not just being stupid....&lt;/p&gt;</description>
                <environment>Windows 7, 64 bit Java, Intel core I3</environment>
        <key id="25148">MC-11058</key>
            <summary>&#196;, &#214;,&#220; don&apos;t get recogniced by commandblock in @p[teams=&lt;teamname&gt;]</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="alecat1998">Alec Hanschin</reporter>
                        <labels>
                            <label>command_block</label>
                            <label>scoreboard</label>
                    </labels>
                <created>Tue, 5 Mar 2013 17:26:31 +0100</created>
                <updated>Fri, 29 Dec 2017 23:13:25 +0100</updated>
                            <resolved>Thu, 17 Mar 2016 17:12:11 +0100</resolved>
                                    <version>Snapshot 13w10a</version>
                    <version>Minecraft 1.5.1</version>
                    <version>Minecraft 1.5.2</version>
                    <version>Snapshot 13w18c</version>
                    <version>Snapshot 13w19a</version>
                                                                        <votes>2</votes>
                                    <watches>4</watches>
                                                                            <comments>
                            <comment id="295224" author="JIRAUSER71590" created="Thu, 17 Mar 2016 17:12:11 +0100"  >&lt;blockquote&gt;&lt;p&gt;&lt;a href=&quot;https://bugs.mojang.com/secure/ViewProfile.jspa?name=Searge&quot; class=&quot;user-hover&quot; rel=&quot;searge&quot;&gt;Searge&lt;/a&gt; added a comment - 11/Jul/14 5:09 PM&lt;br/&gt;
If certain characters do not work, don&apos;t use them in your objective name.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;same goes for teams&lt;/p&gt;</comment>
                            <comment id="205321" author="galaxy_2alex" created="Sat, 25 Oct 2014 14:37:04 +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="142190" author="bradleygizzi" created="Fri, 21 Feb 2014 11:53:15 +0100"  >&lt;p&gt;The problem is teams=team name. Not team=teamname&lt;/p&gt;</comment>
                            <comment id="69565" author="bugi74" created="Wed, 29 May 2013 00:27:19 +0200"  >&lt;p&gt;&lt;b&gt;Fix&lt;/b&gt;&lt;br/&gt;
Tested on some variant of 1.5. Basically, add the flag &apos;UNICODE_CHARACTER_CLASS&apos; to the pattern compiling as below:&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;PlayerSelector&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-comment&quot;&gt;//&lt;span class=&quot;code-keyword&quot;&gt;private&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; Pattern field_82389_a = Pattern.compile(&lt;span class=&quot;code-quote&quot;&gt;&quot;^@([parf])(?:\\[([\\w=,!-]*)\\])?$&quot;&lt;/span&gt;);
&lt;/span&gt;    &lt;span class=&quot;code-comment&quot;&gt;//&lt;span class=&quot;code-keyword&quot;&gt;private&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; Pattern field_82387_b = Pattern.compile(&lt;span class=&quot;code-quote&quot;&gt;&quot;\\G([-!]?\\w*)(?:$|,)&quot;&lt;/span&gt;);
&lt;/span&gt;    &lt;span class=&quot;code-comment&quot;&gt;//&lt;span class=&quot;code-keyword&quot;&gt;private&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; Pattern field_82388_c = Pattern.compile(&lt;span class=&quot;code-quote&quot;&gt;&quot;\\G(\\w+)=([-!]?\\w*)(?:$|,)&quot;&lt;/span&gt;);
&lt;/span&gt;    &lt;span class=&quot;code-keyword&quot;&gt;private&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; Pattern field_82389_a = Pattern.compile(&lt;span class=&quot;code-quote&quot;&gt;&quot;^@([parf])(?:\\[([\\w=,!-]*)\\])?$&quot;&lt;/span&gt;, Pattern.UNICODE_CHARACTER_CLASS);
    &lt;span class=&quot;code-keyword&quot;&gt;private&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; Pattern field_82387_b = Pattern.compile(&lt;span class=&quot;code-quote&quot;&gt;&quot;\\G([-!]?\\w*)(?:$|,)&quot;&lt;/span&gt;, Pattern.UNICODE_CHARACTER_CLASS);
    &lt;span class=&quot;code-keyword&quot;&gt;private&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; Pattern field_82388_c = Pattern.compile(&lt;span class=&quot;code-quote&quot;&gt;&quot;\\G(\\w+)=([-!]?\\w*)(?:$|,)&quot;&lt;/span&gt;, Pattern.UNICODE_CHARACTER_CLASS);
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="50039" author="bugi74" created="Tue, 5 Mar 2013 18:06:51 +0100"  >&lt;p&gt;Umm.. &#196;&#214;&#220; &lt;em&gt;are&lt;/em&gt; alpha-numeric characters &lt;img class=&quot;emoticon&quot; src=&quot;https://bugs.mojang.com/images/icons/emoticons/tongue.png&quot; height=&quot;16&quot; width=&quot;16&quot; align=&quot;absmiddle&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;  Am I missing something?&lt;/p&gt;</comment>
                            <comment id="50026" author="bradleygizzi" created="Tue, 5 Mar 2013 17:31:07 +0100"  >&lt;p&gt;Could you upload an image please?&lt;br/&gt;
P.S. The command block is configured to work with alpha-numeric characters This isn&apos;t really a bug.&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10102">
                    <name>Duplicate</name>
                                            <outwardlinks description="duplicates">
                                        <issuelink>
            <issuekey id="81773">MC-55348</issuekey>
        </issuelink>
                            </outwardlinks>
                                                                <inwardlinks description="is duplicated by">
                                        <issuelink>
            <issuekey id="30191">MC-14760</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                <customfield id="customfield_10701" key="com.atlassian.jira.plugin.system.customfieldtypes:datetime">
                        <customfieldname>CHK</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Mon, 20 May 2013 21:44: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_11600" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|i04xjb:</customfieldvalue>

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