Skip to content

Commit 5caafbd

Browse files
authored
Merge pull request #13 from Hedius/test
v8.1.3.2
2 parents bb2a6b9 + cdc7fc8 commit 5caafbd

File tree

3 files changed

+30
-7
lines changed

3 files changed

+30
-7
lines changed

AdKats.cs

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
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

3131
using 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;

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff 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+

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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">

0 commit comments

Comments
 (0)