summaryrefslogtreecommitdiff
path: root/src/being/crazymoves.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/being/crazymoves.cpp')
-rw-r--r--src/being/crazymoves.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/being/crazymoves.cpp b/src/being/crazymoves.cpp
index e2d960aa4..0fe46791d 100644
--- a/src/being/crazymoves.cpp
+++ b/src/being/crazymoves.cpp
@@ -725,13 +725,13 @@ void CrazyMoves::crazyMoveAo() const
if (mMoveProgram[settings.crazyMoveState] == 'n')
{
settings.crazyMoveState ++;
- outfitWindow->wearNextOutfit();
+ outfitWindow->wearNextOutfit(false);
}
// wear previous outfit
else if (mMoveProgram[settings.crazyMoveState] == 'p')
{
settings.crazyMoveState ++;
- outfitWindow->wearPreviousOutfit();
+ outfitWindow->wearPreviousOutfit(false);
}
}
}