File tree Expand file tree Collapse file tree 3 files changed +30
-7
lines changed
Expand file tree Collapse file tree 3 files changed +30
-7
lines changed Original file line number Diff line number Diff line change 2121 * Work on fork by Hedius (Version >= 8.0.0.0)
2222 *
2323 * AdKats.cs
24- * Version 8.1.3.1
25- * 30-APR -2022
24+ * Version 8.1.3.2
25+ * 06-MAY -2022
2626 *
2727 * Automatic Update Information
28- * <version_code>8.1.3.1 </version_code>
28+ * <version_code>8.1.3.2 </version_code>
2929 */
3030
3131using System;
@@ -68,7 +68,7 @@ public class AdKats : PRoConPluginAPI, IPRoConPluginInterface
6868 {
6969
7070 //Current Plugin Version
71- private const String PluginVersion = "8.1.3.1 ";
71+ private const String PluginVersion = "8.1.3.2 ";
7272
7373 public enum GameVersionEnum
7474 {
@@ -64176,9 +64176,13 @@ public Hashtable GetEmbed()
6417664176 };
6417764177 }
6417864178
64179- public String GetMentionString(List<String> roles) {
64179+ public String GetMentionString(List<String> roles)
64180+ {
6418064181 String mentions = "";
64181- foreach (var role in roles) {
64182+ foreach (var role in roles)
64183+ {
64184+ if (String.IsNullOrEmpty(role))
64185+ continue;
6418264186 mentions += "<@&" + role + ">";
6418364187 }
6418464188 return mentions;
Original file line number Diff line number Diff line change @@ -1489,3 +1489,22 @@ Added small improvements to fuzzy player match response text.</li>
14891489<ul >
14901490 <li><b>No upgrade SQL required.</b></li>
14911491</ul >
1492+
1493+ <h4 >8.1.3.2 (06-MAY-2022)</h4 >
1494+ <b >Enhancements</b ><br />
1495+ <ul >
1496+ <li>None</li>
1497+ </ul >
1498+ <b >Changes</b ><br />
1499+ <ul >
1500+ <li>None</li>
1501+ </ul >
1502+ <b >Bugs Fixed</b ><br />
1503+ <ul >
1504+ <li>Fix mention string for empty lines in the role IDs arrays</li>
1505+ </ul >
1506+ <b >Upgrade SQL from 4.0.0.0 - Current</b ><br />
1507+ <ul >
1508+ <li><b>No upgrade SQL required.</b></li>
1509+ </ul >
1510+
Original file line number Diff line number Diff line change 1- [ // ] : # " <latest_stable_release>8.1.3.1 </latest_stable_release> "
1+ [ // ] : # " <latest_stable_release>8.1.3.2 </latest_stable_release> "
22<p >
33 <a name=adkats />
44 <img src="https://i.imgur.com/r9pwH3A.png" alt="AdKats Advanced In-Game Admin Tools">
You can’t perform that action at this time.
0 commit comments