Unstable 0.17.0.0

This commit is contained in:
Markus Isberg
2022-02-26 02:43:01 +09:00
parent a83f375681
commit 3974067915
913 changed files with 32472 additions and 32364 deletions
@@ -13,14 +13,14 @@ namespace Barotrauma
/// An arbitrary identifier that can be used to determine what kind of a message this is
/// and prevent characters from saying the same kind of line too often.
/// </summary>
public readonly string Identifier;
public readonly Identifier Identifier;
public ChatMessageType? MessageType;
public float SendDelay;
public double SendTime;
public AIChatMessage(string message, ChatMessageType? type, string identifier = "", float delay = 0.0f)
public AIChatMessage(string message, ChatMessageType? type, Identifier identifier = default, float delay = 0.0f)
{
Message = message;
MessageType = type;