Files
reallife-gamemode/ReallifeGamemode.Server.Core/Commands/User/UserCommand.cs
2020-03-15 21:36:14 +01:00

16 lines
340 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using ReallifeGamemode.Server.Core.API;
namespace ReallifeGamemode.Server.Core.Commands.User
{
public abstract class UserCommand : Command
{
public override bool CanExecute(IPlayer player)
{
return player.GetSharedData("loggedIn", false);
}
}
}