Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
Update CHANGELOG and version number
Browse files Browse the repository at this point in the history
  • Loading branch information
K4ryuu committed Jan 29, 2024
1 parent f5e81c3 commit 2c8ae15
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
-- 2023.01.29 - V3.1.4

- feat: Added database connection config option SSLMode (by Sandy-Garrido)
- fix: Fixed lastconnect giving out of range error during LR player stats save query (by Cruze03)
- fix: Added try-catch in LR player stats save queries (by Cruze03)
- fix: shoots will no longer increase on knife swings (by Cruze03)
- fix: Mute Server commands (Private K4-Missions Support)

-- 2023.01.24 - V3.1.2

- feat: Add support for admin groups and command overrides
Expand Down
12 changes: 8 additions & 4 deletions src/Module/Rank/RankCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,8 @@ public void Initialize_Commands(Plugin plugin)
SavePlayerRankCache(target, false);
Server.PrintToChatAll($" {plugin.Localizer["k4.general.prefix"]} {plugin.Localizer["k4.ranks.resetrank", target.PlayerName, playerName]}");
if (playerName != "SERVER")
Server.PrintToChatAll($" {plugin.Localizer["k4.general.prefix"]} {plugin.Localizer["k4.ranks.resetrank", target.PlayerName, playerName]}");
}
});

Expand Down Expand Up @@ -246,7 +247,8 @@ public void Initialize_Commands(Plugin plugin)
SavePlayerRankCache(target, false);
Server.PrintToChatAll($" {plugin.Localizer["k4.general.prefix"]} {plugin.Localizer["k4.ranks.setpoints", target.PlayerName, parsedInt, playerName]}");
if (playerName != "SERVER")
Server.PrintToChatAll($" {plugin.Localizer["k4.general.prefix"]} {plugin.Localizer["k4.ranks.setpoints", target.PlayerName, parsedInt, playerName]}");
}
});

Expand Down Expand Up @@ -296,7 +298,8 @@ public void Initialize_Commands(Plugin plugin)
SavePlayerRankCache(target, false);
Server.PrintToChatAll($" {plugin.Localizer["k4.general.prefix"]} {plugin.Localizer["k4.ranks.givepoints", playerName, parsedInt, target.PlayerName]}");
if (playerName != "SERVER")
Server.PrintToChatAll($" {plugin.Localizer["k4.general.prefix"]} {plugin.Localizer["k4.ranks.givepoints", playerName, parsedInt, target.PlayerName]}");
}
});

Expand Down Expand Up @@ -346,7 +349,8 @@ public void Initialize_Commands(Plugin plugin)
SavePlayerRankCache(target, false);
Server.PrintToChatAll($" {plugin.Localizer["k4.general.prefix"]} {plugin.Localizer["k4.ranks.removepoints", playerName, parsedInt, target.PlayerName]}");
if (playerName != "SERVER")
Server.PrintToChatAll($" {plugin.Localizer["k4.general.prefix"]} {plugin.Localizer["k4.ranks.removepoints", playerName, parsedInt, target.PlayerName]}");
}
});
}
Expand Down
2 changes: 1 addition & 1 deletion src/Plugin/PluginManifest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public sealed partial class Plugin : BasePlugin

public override string ModuleAuthor => "K4ryuu";

public override string ModuleVersion => "3.1.3 " +
public override string ModuleVersion => "3.1.4 " +
#if RELEASE
"(release)";
#else
Expand Down

0 comments on commit 2c8ae15

Please sign in to comment.