Skip to content

Commit

Permalink
Update to v0.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Substrata1 committed Jun 6, 2024
1 parent 3f2cb1d commit fe241b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Inbound.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

namespace Oxide.Plugins
{
[Info("Inbound", "Substrata", "0.6.5")]
[Info("Inbound", "Substrata", "0.6.6")]
[Description("Broadcasts notifications when patrol helicopters, supply drops, cargo ships, etc. are inbound")]

class Inbound : RustPlugin
Expand Down Expand Up @@ -272,7 +272,7 @@ void SendUINotify(string msg)
void SendDiscordMessage(string msg)
{
string dMsg = Lang("DiscordMessage_", null, msg);
if (!string.IsNullOrWhiteSpace(dMsg)) return;
if (string.IsNullOrWhiteSpace(dMsg)) return;

if (configData.discordMessages.embedded)
{
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"Version (Do not modify)": {
"Major": 0,
"Minor": 6,
"Patch": 5
"Patch": 6
}
}
```
Expand Down

0 comments on commit fe241b7

Please sign in to comment.