aboutsummaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorArne Dußin2021-02-04 15:13:39 +0100
committerArne Dußin2021-02-04 15:13:39 +0100
commitc53af0485f38a1f5bd843154eb27357a5c0aed11 (patch)
tree1d1fb377dba8e481cd7fa02c6a1e51931ba1a3f2 /src/client
parentc0f8c067f6226981dc657a5a13fe0c0c5b0734d9 (diff)
downloadgraf_karto-c53af0485f38a1f5bd843154eb27357a5c0aed11.tar.gz
graf_karto-c53af0485f38a1f5bd843154eb27357a5c0aed11.zip
Add matrix transform capabilities back
Diffstat (limited to 'src/client')
-rw-r--r--src/client/editor.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/client/editor.rs b/src/client/editor.rs
index e030558..14f25ef 100644
--- a/src/client/editor.rs
+++ b/src/client/editor.rs
@@ -192,8 +192,10 @@ impl Editor {
}
Cargo::AddMapData(_) => unimplemented!(),
Cargo::UpdateMapData(_) => unimplemented!(),
- Cargo::ApplyMatrix(_) => unimplemented!(),
- Cargo::AddIcon(_) | Cargo::AddRoom(_) | Cargo::AddWall(_) => {
+ Cargo::AddIcon(_)
+ | Cargo::AddRoom(_)
+ | Cargo::AddWall(_)
+ | Cargo::ApplyMatrix(_) => {
error!("Packet is only valid in Client -> Server direction")
}
}