diff options
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,6 +15,6 @@ pub struct State { pub tick: broadcast::Sender<Option<Option<u32>>>, pub game: RwLock<Game>, pub players: RwLock<HashMap<u32, String>>, - pub chat: broadcast::Sender<(String, String)>, + pub chat: broadcast::Sender<(u32, String)>, pub db: Database, } |