Skip to content

Commit 8a7dc5c

Browse files
committed
Rename MineCase.NBT to MineCase.Nbt
1 parent 02889d6 commit 8a7dc5c

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/MineCase.Server.Grains/Game/Entities/PlayerGrain.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,5 +336,10 @@ private class WindowContext
336336
public IWindow Window;
337337
public short ActionNumber;
338338
}
339+
340+
public bool HasPermission(Permission permission)
341+
{
342+
throw new NotImplementedException();
343+
}
339344
}
340345
}

src/MineCase.Server.Interfaces/Game/Entities/IPlayer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
namespace MineCase.Server.Game.Entities
1414
{
15-
public interface IPlayer : IEntity
15+
public interface IPlayer : IEntity, ICommandSender
1616
{
1717
Task<string> GetName();
1818

0 commit comments

Comments
 (0)