Skip to content

Commit b7f2d4b

Browse files
committed
Update to Unturned 3.17.4.0
1 parent 6aa0187 commit b7f2d4b

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

DatabaseManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ private bool GetInstanceID(bool retrying = false)
136136
MySqlDataReader getInstance = null;
137137
try {
138138
MySqlCommand command = Connection.CreateCommand();
139-
command.Parameters.AddWithValue("@instname", Dedicator.InstanceName.ToLower());
139+
command.Parameters.AddWithValue("@instname", Provider.serverID.ToLower());
140140
command.Parameters.AddWithValue("@servername", Provider.serverName);
141141
command.CommandText = "SELECT `ServerID`, `ServerName` FROM `" + TableInstance + "` WHERE `ServerInstance` = @instname;";
142142
getInstance = command.ExecuteReader();

Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.3.0.0")]
36-
[assembly: AssemblyFileVersion("1.3.0.0")]
35+
[assembly: AssemblyVersion("1.3.0.1")]
36+
[assembly: AssemblyFileVersion("1.3.0.1")]

0 commit comments

Comments
 (0)