[ScryMUD] SVN Commit Info r912 - trunk/mud/grrmud/server

scrymud at wanfear.com scrymud at wanfear.com
Sat Mar 3 19:14:22 PST 2007


Author: eroper
Date: 2007-03-03 19:14:22 -0800 (Sat, 03 Mar 2007)
New Revision: 912

Modified:
   trunk/mud/grrmud/server/pet_spll.cc
Log:
Fixes: MUD-331
Casting create greater golem was erroneously using the mana cost of create
golem for the mana check.


Modified: trunk/mud/grrmud/server/pet_spll.cc
===================================================================
--- trunk/mud/grrmud/server/pet_spll.cc	2007-03-04 02:42:28 UTC (rev 911)
+++ trunk/mud/grrmud/server/pet_spll.cc	2007-03-04 03:14:22 UTC (rev 912)
@@ -260,7 +260,7 @@
 
 
 void cast_create_greater_golem(critter& pc) {
-   int spell_num = CREATE_GOLEM_SKILL_NUM;
+   int spell_num = CREATE_GREATER_GOLEM_SKILL_NUM;
 
    if (!ok_to_do_action(NULL, "KMSNBb", spell_num, pc)) {
       return;




More information about the ScryMUD mailing list