@@ -749,7 +749,7 @@ class MoveObject extends Base {
749749 parameters : Record < string , any >
750750 ) : Orientation | boolean {
751751 if ( object ) {
752- object . lookAt ( ( Orientation . North + ( this . isCameraOrientation ? Scene . Map . current . orientation + 2 : 0 ) ) % 4 ) ;
752+ object . lookAt ( ( Orientation . North + ( this . isCameraOrientation ? Scene . Map . current . orientation : 0 ) ) % 4 ) ;
753753 return true ;
754754 }
755755 return Orientation . North ;
@@ -768,7 +768,7 @@ class MoveObject extends Base {
768768 parameters : Record < string , any >
769769 ) : Orientation | boolean {
770770 if ( object ) {
771- object . lookAt ( ( Orientation . South + ( this . isCameraOrientation ? Scene . Map . current . orientation + 2 : 0 ) ) % 4 ) ;
771+ object . lookAt ( ( Orientation . South + ( this . isCameraOrientation ? Scene . Map . current . orientation : 0 ) ) % 4 ) ;
772772 return true ;
773773 }
774774 return Orientation . South ;
@@ -787,7 +787,7 @@ class MoveObject extends Base {
787787 parameters : Record < string , any >
788788 ) : Orientation | boolean {
789789 if ( object ) {
790- object . lookAt ( ( Orientation . West + ( this . isCameraOrientation ? Scene . Map . current . orientation + 2 : 0 ) ) % 4 ) ;
790+ object . lookAt ( ( Orientation . West + ( this . isCameraOrientation ? Scene . Map . current . orientation : 0 ) ) % 4 ) ;
791791 return true ;
792792 }
793793 return Orientation . West ;
@@ -806,7 +806,7 @@ class MoveObject extends Base {
806806 parameters : Record < string , any >
807807 ) : Orientation | boolean {
808808 if ( object ) {
809- object . lookAt ( ( Orientation . East + ( this . isCameraOrientation ? Scene . Map . current . orientation + 2 : 0 ) ) % 4 ) ;
809+ object . lookAt ( ( Orientation . East + ( this . isCameraOrientation ? Scene . Map . current . orientation : 0 ) ) % 4 ) ;
810810 return true ;
811811 }
812812 return Orientation . East ;
0 commit comments