Skip to content

Commit

Permalink
Fixed private room joining.
Browse files Browse the repository at this point in the history
Updated version.
  • Loading branch information
Rodi Degirmenci committed May 7, 2020
1 parent 0247c3f commit 43ba8cf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions RBot/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("3.1.0.0")]
[assembly: AssemblyFileVersion("3.1.0.0")]
[assembly: AssemblyVersion("3.2.0.0")]
[assembly: AssemblyFileVersion("3.2.0.0")]
2 changes: 1 addition & 1 deletion RBot/Resources/BuildDate.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
07/05/2020 17:33:46.00
07/05/2020 17:44:43.73
2 changes: 1 addition & 1 deletion RBot/Scripts/ScriptPlayer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -802,7 +802,7 @@ private void _Join(string map, string cell = "Enter", string pad = "Spawn", bool
if (ignoreCheck || !Bot.Map.Name.Equals(map, StringComparison.OrdinalIgnoreCase))
{
if (Bot.Options.PrivateRooms)
map = map.Split('-')[0] + "-48e71";
map = map.Split('-')[0] + "-1000000";
if (Bot.Options.SafeTimings)
Bot.Wait.ForActionCooldown(ScriptWait.GameActions.Transfer);
JoinPacket(map, cell, pad);
Expand Down

0 comments on commit 43ba8cf

Please sign in to comment.