From 7346c8f361a38bb73988b41694b0e19be11e7f07 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Wed, 8 Jul 2015 07:10:40 +1000 Subject: [PATCH] Oops, BottomRight should be the other way around. --- 2D/Screens/ChatScreen.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/2D/Screens/ChatScreen.cs b/2D/Screens/ChatScreen.cs index 8dfc510fd..ab749ae4a 100644 --- a/2D/Screens/ChatScreen.cs +++ b/2D/Screens/ChatScreen.cs @@ -18,9 +18,7 @@ namespace ClassicalSharp { TextGroupWidget status, bottomRight, normalChat; bool suppressNextPress = true; DateTime announcementDisplayTime; - int chatIndex; - static readonly Color backColour = Color.FromArgb( 120, 60, 60, 60 ); public override void Render( double delta ) { normalChat.Render( delta ); @@ -68,9 +66,9 @@ namespace ClassicalSharp { status.SetText( 0, Window.Status1 ); status.SetText( 1, Window.Status2 ); status.SetText( 2, Window.Status3 ); - bottomRight.SetText( 0, Window.BottomRight1 ); + bottomRight.SetText( 2, Window.BottomRight1 ); bottomRight.SetText( 1, Window.BottomRight2 ); - bottomRight.SetText( 2, Window.BottomRight3 ); + bottomRight.SetText( 0, Window.BottomRight3 ); UpdateAnnouncement( Window.Announcement ); if( !String.IsNullOrEmpty( Window.chatInInputBuffer ) ) { OpenTextInputBar( Window.chatInInputBuffer );