diff options
-rw-r--r-- | src/main.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 7d34846..53674d0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -167,6 +167,18 @@ impl Conn { }) .await .unwrap(); + + self.tx + .send(&ToSrvPkt::CltReady { + major: 0, + minor: 1, + patch: 0, + reserved: 0, + version: "https://github.com/LizzyFleckenstein03/texmodbot".into(), + formspec: 4, + }) + .await + .unwrap(); } _ => {} } |