| [Fix < r7070] Darren's wrong quote[message #257673]
|
Tue, 27 July 2010 20:00
|
|
mgl |
  |
Messages:255
Registered:December 2007 Location: France |
|
|
Darren, the boxing club manager, says a wrong quote when you want to fight and already know Kingpin.
The comment in the code about the quotes is right, but the code itself is wrong.
This is the fix:
Index: Build/TacticalAI/NPC.cc
===================================================================
--- Build/TacticalAI/NPC.cc (revision 7063)
+++ Build/TacticalAI/NPC.cc (working copy)
@@ -851,7 +851,7 @@
{
UINT8 const room = GetRoom(kingpin->sGridNo);
// first boxer, bring kingpin over
- if (IN_KINGPIN_HOUSE(room)) id = 17;
+ if (IN_KINGPIN_HOUSE(room)) id = 18;
}
return UseQuote(pNPCQuoteInfoArray, ppResultQuoteInfo, pubQuoteNum, id)
Report message to a moderator
|
|
|
|
|
|
|