Skip to content

Commit

Permalink
More refactoring and more resharper fun.
Browse files Browse the repository at this point in the history
  • Loading branch information
soshimozi committed Oct 31, 2011
1 parent c020928 commit e31fadd
Show file tree
Hide file tree
Showing 17 changed files with 2,749 additions and 2,720 deletions.
3 changes: 2 additions & 1 deletion ConsoleApplication1/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,8 @@ private void CreateRoomVariable()

value.SetElementValue("arrayTest", valueArray, SharedObjectDataType.BzObjectArray);

var crvr = new CreateRoomVariableRequest {Name = name, Value = value};
long roomId = _engine.Managers.UserManager.Me.Room.RoomId;
var crvr = new CreateRoomVariableRequest {Name = name, Value = value, RoomId = roomId };
//crvr.RoomId = room; get my room id

_server.SendRequestEncrypted(crvr);
Expand Down
1 change: 0 additions & 1 deletion ConsoleApplication1/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
Expand Down
Binary file modified Database/ServerData.sdf
Binary file not shown.
1 change: 0 additions & 1 deletion SocketService.Client.API/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public int ZoneId
/// <value>
/// The room.
/// </value>
public int RoomId
public long RoomId
{
get;
set;
Expand Down
Loading

0 comments on commit e31fadd

Please sign in to comment.