diff --git a/Projects/InfectionFreeZone/InfectionFreeZone/InfectionFreeZone.cs b/Projects/InfectionFreeZone/InfectionFreeZone/InfectionFreeZone.cs index b2bdb3f..5cecfed 100644 --- a/Projects/InfectionFreeZone/InfectionFreeZone/InfectionFreeZone.cs +++ b/Projects/InfectionFreeZone/InfectionFreeZone/InfectionFreeZone.cs @@ -509,7 +509,7 @@ namespace InfectionFreeZone { } [HarmonyTranspiler] - [HarmonyPatch(typeof(PlaceableObject), "RotateRight")] + [HarmonyPatch(typeof(PlaceObjectsInSingleLineCursor), "RotateRight")] public static IEnumerable PostfixRotateRight(IEnumerable instructions) { var codes = new List(instructions); for (var i = 0; i < codes.Count; i++) { @@ -531,7 +531,7 @@ namespace InfectionFreeZone { } [HarmonyTranspiler] - [HarmonyPatch(typeof(PlaceableObject), "RotateLeft")] + [HarmonyPatch(typeof(PlaceObjectsInSingleLineCursor), "RotateLeft")] public static IEnumerable PostfixRotateLeft(IEnumerable instructions) { var codes = new List(instructions); for (var i = 0; i < codes.Count; i++) {