do client check for tutorial instead of server side
This commit is contained in:
@@ -530,7 +530,7 @@ pub fn img_check(account: &Account) -> Result<Uuid, Error> {
|
||||
}
|
||||
}
|
||||
|
||||
pub fn tutorial(tx: &mut Transaction, account: &Account) -> Result<Option<Instance>, Error> {
|
||||
pub fn _tutorial(tx: &mut Transaction, account: &Account) -> Result<Option<Instance>, Error> {
|
||||
let query = "
|
||||
SELECT count(id)
|
||||
FROM players
|
||||
|
||||
@@ -128,9 +128,9 @@ impl User for Authenticated {
|
||||
let wheel = account::chat_wheel(&db, a.id)?;
|
||||
self.ws.send(RpcMessage::ChatWheel(wheel))?;
|
||||
|
||||
if let Some(instance) = account::tutorial(&mut tx, &a)? {
|
||||
self.ws.send(RpcMessage::InstanceState(instance))?;
|
||||
}
|
||||
// if let Some(instance) = account::tutorial(&mut tx, &a)? {
|
||||
// self.ws.send(RpcMessage::InstanceState(instance))?;
|
||||
// }
|
||||
|
||||
// tx should do nothing
|
||||
tx.commit()?;
|
||||
|
||||
Reference in New Issue
Block a user