diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/game/CreatureEventAI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/CreatureEventAI.cpp b/src/game/CreatureEventAI.cpp index 116ff6d0cd3..0026658f319 100644 --- a/src/game/CreatureEventAI.cpp +++ b/src/game/CreatureEventAI.cpp @@ -331,8 +331,8 @@ void CreatureEventAI::ProcessAction(CreatureEventAI_Action const& action, uint32 switch( rand()%3 ) { case 0: temp = action.text.TextId1; break; - case 2: temp = action.text.TextId2; break; - case 3: temp = action.text.TextId3; break; + case 1: temp = action.text.TextId2; break; + case 2: temp = action.text.TextId3; break; } } else if (action.text.TextId2 && urand(0,1)) |