Skip to content

Commit

Permalink
add missing {min_players} variable
Browse files Browse the repository at this point in the history
  • Loading branch information
RestoreMonarchy committed Aug 21, 2024
1 parent 30f15a4 commit 9c1eab2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion AirdropManager3/AirdropManager3.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net48</TargetFramework>
<LangVersion>latest</LangVersion>
<RootNamespace>RestoreMonarchy.AirdropManager3</RootNamespace>
<Version>3.0.0</Version>
<Version>3.0.1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions AirdropManager3/AirdropManager3Plugin.Messages.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ public void SendBroadcastMessage(Broadcast broadcast, Airdrop airdrop, AirdropSp
message = message.Replace("{position_x}", position.x.ToString());
message = message.Replace("{position_y}", position.y.ToString());
message = message.Replace("{position_z}", position.z.ToString());
message = message.Replace("{min_players}", Configuration.Instance.AirdropIntervalMinPlayers.ToString());
if (player == null)
{
player = new ConsolePlayer();
Expand Down

0 comments on commit 9c1eab2

Please sign in to comment.