Skip to content
This repository has been archived by the owner on Feb 21, 2023. It is now read-only.

Commit

Permalink
Bump version and added "IsHandcuffed" to Player
Browse files Browse the repository at this point in the history
  • Loading branch information
Dankrushen committed May 23, 2018
1 parent 70820aa commit 630f0be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Smod2/Smod2/API/Player.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ public abstract class Player
public abstract void Ban(int duration);
public abstract void GiveItem(ItemType type);
public abstract List<Item> GetInventory();
public abstract bool IsHandcuffed();
public abstract void ChangeClass(Classes newClass, bool full = true, bool force = false);
public abstract object GetGameObject();
}
Expand Down
2 changes: 1 addition & 1 deletion Smod2/Smod2/PluginManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Smod2
{
public class PluginManager
{
public static readonly string SMOD_API_VERSION = "2.1.0";
public static readonly string SMOD_API_VERSION = "2.1.1";
private Dictionary<string, Plugin> plugins;

private ICommandManager commandManager;
Expand Down

0 comments on commit 630f0be

Please sign in to comment.