Adds /me command. (#414)

* Adds /me command.

* Update Content.Server/Chat/ChatManager.cs

Co-Authored-By: Pieter-Jan Briers <pieterjan.briers@gmail.com>
This commit is contained in:
Víctor Aguilera Puerto
2019-10-30 21:49:07 +01:00
committed by Pieter-Jan Briers
parent 12cf5559c2
commit 7d307832a0
6 changed files with 75 additions and 0 deletions

View File

@@ -102,6 +102,11 @@ namespace Content.Server.GameObjects
return CurrentDamageState.CanSpeak();
}
bool IActionBlocker.CanEmote()
{
return CurrentDamageState.CanEmote();
}
List<DamageThreshold> IOnDamageBehavior.GetAllDamageThresholds()
{
var thresholdlist = DamageTemplate.DamageThresholds;