Fix building drawerType, re-add rotation render code

This commit is contained in:
2023-07-15 11:00:29 -05:00
parent 3865dd4f53
commit 0039f1a9b6
2 changed files with 4 additions and 4 deletions

View File

@@ -175,10 +175,9 @@ namespace HydroponicsExpanded {
bar.unfilledMat = HydroponicUnfilledMaterial;
// Rot4 rotation = base.Rotation;
// rotation.Rotate(RotationDirection.Clockwise);
// bar.rotation = rotation;
bar.rotation = Rotation;
Rot4 rotation = Rotation;
rotation.Rotate(RotationDirection.Clockwise);
bar.rotation = rotation;
GenDraw.DrawFillableBar(bar);
}