diff --git a/lua/mapvote/client/modules/net.lua b/lua/mapvote/client/modules/net.lua index fb958e8..d7b3258 100644 --- a/lua/mapvote/client/modules/net.lua +++ b/lua/mapvote/client/modules/net.lua @@ -51,8 +51,10 @@ net.Receive( "MapVote_VoteCancelled", function() end ) net.Receive( "RTV_Delay", function() - chat.AddText( Color( 102, 255, 51 ), "[RTV]", Color( 255, 255, 255 ), - " The vote has been rocked, map vote will begin on round end" ) + timer.Simple( 0.2, function() + chat.AddText( Color( 102, 255, 51 ), "[RTV]", Color( 255, 255, 255 ), + " The vote has been rocked, map vote will begin on round end" ) + end ) end )