Skip to content

Commit

Permalink
Rename MineCase.NBT to MineCase.Nbt
Browse files Browse the repository at this point in the history
  • Loading branch information
akemimadoka committed Aug 27, 2017
1 parent b5cffb2 commit ff01e1d
Show file tree
Hide file tree
Showing 21 changed files with 6 additions and 1 deletion.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 5 additions & 0 deletions src/MineCase.Server.Grains/Game/Entities/PlayerGrain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -132,5 +132,10 @@ public Task SetLook(float yaw, float pitch, bool onGround)
_yaw = yaw;
return Task.CompletedTask;
}

public bool HasPermission(Permission permission)
{
throw new NotImplementedException();
}
}
}
2 changes: 1 addition & 1 deletion src/MineCase.Server.Interfaces/Game/Entities/IPlayer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace MineCase.Server.Game.Entities
{
public interface IPlayer : IEntity
public interface IPlayer : IEntity, ICommandSender
{
Task<string> GetName();

Expand Down

0 comments on commit ff01e1d

Please sign in to comment.