i am having trouble with my choice command

no matter what i do if i say N for no it will go to :start instead of :wrongAnswer
can anyone help me fix this problem i am on a windows vista
Code: Select all
@echo off
cls
goto main
:main
cls
echo.
echo.
echo -----------------------
echo I want to play a game
echo -----------------------
echo.
echo.
choice /c YN /t 10 /d Y /m "do you want to play a game with me yes or no"
if errorlevel 1 goto start
if errorlevel 2 goto wrongAnswer
:start
cls
echo.
echo.
echo *you wake up in a room strapped to a table* now lets get started with our game. Ihope your ready to be tested to your limit
echo.
pause
cls
choice /c LR /t 10 /d L /m "As you can see there are two areas one will hold your freedom the other will hold your doom. choose wisely left door or right door?"
if errorlevel 1 goto death
if errorlevel 2 goto live
:wrongAnswer
cls
echo.
echo.
choice /c FT /t 10 /d f /m "fine have it your way then *he tilts his head upward* what do you do? do you walk forward or turn around"
if errorlevel 1 goto sleepForward
if errorlevel 2 goto sleepTurn