|
From: Chad M. <cmm...@us...> - 2005-05-10 15:46:26
|
Update of /cvsroot/seq/showeq/conf In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10843/conf Modified Files: Tag: pre_5_0_beta zoneopcodes.xml Log Message: Allow 0-size OP_ManaChange so bards don't see size type mismatch errors all the time. This only happens Client->Server. Index: zoneopcodes.xml =================================================================== RCS file: /cvsroot/seq/showeq/conf/Attic/zoneopcodes.xml,v retrieving revision 1.1.4.16 retrieving revision 1.1.4.17 diff -u -d -r1.1.4.16 -r1.1.4.17 --- zoneopcodes.xml 10 May 2005 15:41:59 -0000 1.1.4.16 +++ zoneopcodes.xml 10 May 2005 15:46:15 -0000 1.1.4.17 @@ -621,8 +621,9 @@ <comment></comment> </opcode> <opcode id="1281" name="OP_ManaChange" implicitlen="16" updated="02/15/05"> - <comment></comment> - <payload dir="both" typename="manaDecrementStruct" sizechecktype="match"/> + <comment>Mana change. Bards send this up with no size. Casters receive this for mana updates.</comment> + <payload dir="server" typename="manaDecrementStruct" sizechecktype="match"/> + <payload dir="client" typename="uint8_t" sizechecktype="none"/> </opcode> <opcode id="4ee6" name="OP_ShopPlayerBuy" updated="02/15/05"> <comment>old BuyItemCode</comment> |