Skip to content

Commit

Permalink
Updated Guild related files for project refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
jaddie committed Nov 24, 2013
1 parent 1f9c82a commit a9d4bae
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Services/WCell.RealmServer/Commands/GuildCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using WCell.Util;
using WCell.Util.Commands;
using System.Collections.Generic;
using Guild = WCell.RealmServer.Database.Entities.Guild;
using Guild = WCell.RealmServer.Guilds.Guild;

namespace WCell.RealmServer.Commands
{
Expand Down
2 changes: 1 addition & 1 deletion Services/WCell.RealmServer/Database/Entities/Guild.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using WCell.RealmServer.Guilds;

namespace WCell.RealmServer.Guilds
namespace WCell.RealmServer.Database.Entities
{
public partial class Guild
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System.Collections.Generic;
using System.Linq;
using WCell.Constants.Guilds;
using WCell.RealmServer.Guilds;

namespace WCell.RealmServer.Database.Entities
{
Expand Down Expand Up @@ -52,8 +53,7 @@ public DateTime TimeStamp
set;
}

public GuildEventLogEntry(Database.Entities.Guild guild, GuildEventLogEntryType type,
int character1LowId, int character2LowId, int newRankId, DateTime timeStamp)
public GuildEventLogEntry(Guild guild, GuildEventLogEntryType type, int character1LowId, int character2LowId, int newRankId, DateTime timeStamp)
{
GuildId = guild.Id;
Type = type;
Expand Down

0 comments on commit a9d4bae

Please sign in to comment.