Merge branch 'zesterer-master-patch-82877' into 'master'

Actually a tiny fix this time

See merge request veloren/veloren!2835
This commit is contained in:
Joshua Barretto 2021-09-13 21:38:21 +00:00
commit 350e835d7d

View File

@ -39,7 +39,7 @@ impl DebugShape {
0.0,
);
let h = Vec3::new(0.0, 0.0, *height);
mesh.push_tri(tri(a, b, c));
mesh.push_tri(tri(c, b, a));
mesh.push_quad(quad(b, c, c + h, b + h));
mesh.push_tri(tri(a + h, b + h, c + h));
}