KhanAcandamyFlipFix

// Save current drawing matrix

pushMatrix();

// Translate drawing context to where the archer is

translate(290,206);

// Flip archer horizontally

scale(-1,1);

// Draw archer at 0,0 point of drawing context

image(classim.archer,M1A,127,45,50);

// Restore drawing matrix

popMatrix();