From d648d1264f73a09f5c39cf2ce2df5b27001e7802 Mon Sep 17 00:00:00 2001 From: Anna Date: Sun, 4 Sep 2022 17:10:03 -0400 Subject: [PATCH] yaw!! --- client/Message.cs | 1 + client/Ui/MainWindowTabs/Write.cs | 1 + 2 files changed, 2 insertions(+) diff --git a/client/Message.cs b/client/Message.cs index cf5ca6d..b0ac5e6 100644 --- a/client/Message.cs +++ b/client/Message.cs @@ -49,6 +49,7 @@ internal class MessageWithTerritory { X = message.X, Y = message.Y, Z = message.Z, + Yaw = message.Yaw, Text = message.Text, PositiveVotes = message.PositiveVotes, NegativeVotes = message.NegativeVotes, diff --git a/client/Ui/MainWindowTabs/Write.cs b/client/Ui/MainWindowTabs/Write.cs index c240b0c..955b735 100644 --- a/client/Ui/MainWindowTabs/Write.cs +++ b/client/Ui/MainWindowTabs/Write.cs @@ -174,6 +174,7 @@ internal class Write : ITab { X = player.Position.X, Y = player.Position.Y, Z = player.Position.Z, + Yaw = player.Rotation, Text = actualText, NegativeVotes = 0, PositiveVotes = 0,