Crayon fix (#4848)

* removed line that broke crayon decals

* Removed rotation from crayon decals.
This commit is contained in:
JasperJRoth
2021-10-13 02:56:35 -04:00
committed by GitHub
parent 07303e7a4b
commit cd91e6c06b
3 changed files with 1 additions and 8 deletions

View File

@@ -23,11 +23,6 @@ namespace Content.Client.Crayon
{
sprite.LayerSetColor(0, Color.FromName(color));
}
if (component.TryGetData(CrayonVisuals.Rotation, out Angle rotation))
{
sprite.Rotation = rotation;
}
}
}
}