ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/apply.C
(Generate patch)

Comparing deliantra/server/server/apply.C (file contents):
Revision 1.30 by root, Sat Sep 16 22:24:13 2006 UTC vs.
Revision 1.38 by root, Tue Dec 12 22:37:05 2006 UTC

206 CLEAR_FLAG (tmp, FLAG_APPLIED); 206 CLEAR_FLAG (tmp, FLAG_APPLIED);
207 return 0; 207 return 0;
208 } 208 }
209 209
210 if (op->type == PLAYER) 210 if (op->type == PLAYER)
211 {
212 if (!QUERY_FLAG (tmp, FLAG_IDENTIFIED)) 211 if (!QUERY_FLAG (tmp, FLAG_IDENTIFIED))
213 identify (tmp); 212 identify (tmp);
214 }
215 213
216 handle_apply_yield (tmp); 214 handle_apply_yield (tmp);
217 215
218 /* Potion of restoration - only for players */ 216 /* Potion of restoration - only for players */
219 if (op->type == PLAYER && (tmp->attacktype & AT_DEPLETE)) 217 if (op->type == PLAYER && (tmp->attacktype & AT_DEPLETE))
226 drain_stat (op); 224 drain_stat (op);
227 fix_player (op); 225 fix_player (op);
228 decrease_ob (tmp); 226 decrease_ob (tmp);
229 return 1; 227 return 1;
230 } 228 }
229
231 if ((at = archetype::find (ARCH_DEPLETION)) == NULL) 230 if ((at = archetype::find (ARCH_DEPLETION)) == NULL)
232 { 231 {
233 LOG (llevError, "Could not find archetype depletion\n"); 232 LOG (llevError, "Could not find archetype depletion\n");
234 return 0; 233 return 0;
235 } 234 }
236 depl = present_arch_in_ob (at, op); 235 depl = present_arch_in_ob (at, op);
236
237 if (depl != NULL) 237 if (depl != NULL)
238 { 238 {
239 for (i = 0; i < NUM_STATS; i++) 239 for (i = 0; i < NUM_STATS; i++)
240 if (get_attr_value (&depl->stats, i)) 240 if (get_attr_value (&depl->stats, i))
241 {
242 new_draw_info (NDI_UNIQUE, 0, op, restore_msg[i]); 241 new_draw_info (NDI_UNIQUE, 0, op, restore_msg[i]);
243 } 242
244 remove_ob (depl); 243 depl->destroy ();
245 free_object (depl);
246 fix_player (op); 244 fix_player (op);
247 } 245 }
248 else 246 else
249 new_draw_info (NDI_UNIQUE, 0, op, "You potion had no effect."); 247 new_draw_info (NDI_UNIQUE, 0, op, "You potion had no effect.");
250 248
253 } 251 }
254 252
255 /* improvement potion - only for players */ 253 /* improvement potion - only for players */
256 if (op->type == PLAYER && tmp->attacktype & AT_GODPOWER) 254 if (op->type == PLAYER && tmp->attacktype & AT_GODPOWER)
257 { 255 {
258
259 for (i = 1; i < MIN (11, op->level); i++) 256 for (i = 1; i < MIN (11, op->level); i++)
260 { 257 {
261 if (QUERY_FLAG (tmp, FLAG_CURSED) || QUERY_FLAG (tmp, FLAG_DAMNED)) 258 if (QUERY_FLAG (tmp, FLAG_CURSED) || QUERY_FLAG (tmp, FLAG_DAMNED))
262 { 259 {
263 if (op->contr->levhp[i] != 1) 260 if (op->contr->levhp[i] != 1)
293 op->contr->levgrace[i] = 3; 290 op->contr->levgrace[i] = 3;
294 break; 291 break;
295 } 292 }
296 } 293 }
297 } 294 }
295
298 /* Just makes checking easier */ 296 /* Just makes checking easier */
299 if (i < MIN (11, op->level)) 297 if (i < MIN (11, op->level))
300 got_one = 1; 298 got_one = 1;
299
301 if (!QUERY_FLAG (tmp, FLAG_CURSED) && !QUERY_FLAG (tmp, FLAG_DAMNED)) 300 if (!QUERY_FLAG (tmp, FLAG_CURSED) && !QUERY_FLAG (tmp, FLAG_DAMNED))
302 { 301 {
303 if (got_one) 302 if (got_one)
304 { 303 {
305 fix_player (op); 304 fix_player (op);
318 new_draw_info (NDI_UNIQUE, 0, op, "The Gods are angry and punish you."); 317 new_draw_info (NDI_UNIQUE, 0, op, "The Gods are angry and punish you.");
319 } 318 }
320 else 319 else
321 new_draw_info (NDI_UNIQUE, 0, op, "You are fortunate that you are so pathetic."); 320 new_draw_info (NDI_UNIQUE, 0, op, "You are fortunate that you are so pathetic.");
322 } 321 }
322
323 decrease_ob (tmp); 323 decrease_ob (tmp);
324 return 1; 324 return 1;
325 } 325 }
326 326
327 327
952 price_in = nr * CONV_NEED (converter) * item->value; 952 price_in = nr * CONV_NEED (converter) * item->value;
953 } 953 }
954 else 954 else
955 { 955 {
956 price_in = item->value; 956 price_in = item->value;
957 remove_ob (item); 957 item->destroy ();
958 free_object (item);
959 } 958 }
960 } 959 }
961 960
962 if (converter->inv != NULL) 961 if (converter->inv != NULL)
963 { 962 {
1027 if (op->type != PLAYER) 1026 if (op->type != PLAYER)
1028 return 0; /* This might change */ 1027 return 0; /* This might change */
1029 1028
1030 if (sack == NULL || sack->type != CONTAINER) 1029 if (sack == NULL || sack->type != CONTAINER)
1031 { 1030 {
1032 LOG (llevError, "apply_container: %s is not container!\n", &sack->name); 1031 LOG (llevError, "apply_container: %s is not container!\n", sack ? &sack->name : "[nullobject]");
1033 return 0; 1032 return 0;
1034 } 1033 }
1035 op->contr->last_used = NULL; 1034 op->contr->last_used = NULL;
1036 op->contr->last_used_id = 0; 1035 op->contr->last_used_id = 0;
1037 1036
1076 } 1075 }
1077 else 1076 else
1078 { 1077 {
1079 sack->move_off = 0; 1078 sack->move_off = 0;
1080 tmp = sack->inv; 1079 tmp = sack->inv;
1080
1081 if (tmp && tmp->type == CLOSE_CON) 1081 if (tmp && tmp->type == CLOSE_CON)
1082 { 1082 tmp->destroy ();
1083 remove_ob (tmp);
1084 free_object (tmp);
1085 }
1086 } 1083 }
1087 } 1084 }
1088 } 1085 }
1089 1086
1090 if (QUERY_FLAG (sack, FLAG_APPLIED)) 1087 if (QUERY_FLAG (sack, FLAG_APPLIED))
1176 if (op->type != PLAYER) 1173 if (op->type != PLAYER)
1177 return 0; /* This might change */ 1174 return 0; /* This might change */
1178 1175
1179 if (sack == NULL || sack->type != CONTAINER) 1176 if (sack == NULL || sack->type != CONTAINER)
1180 { 1177 {
1181 LOG (llevError, "esrv_apply_container: %s is not container!\n", &sack->name); 1178 LOG (llevError, "esrv_apply_container: %s is not container!\n", sack ? &sack->name : "[nullobject]");
1182 return 0; 1179 return 0;
1183 } 1180 }
1184 1181
1185 /* If we have a currently open container, then it needs to be closed in all cases 1182 /* If we have a currently open container, then it needs to be closed in all cases
1186 * if we are opening this one up. We then fall through if appropriate for 1183 * if we are opening this one up. We then fall through if appropriate for
1346 1343
1347 if (QUERY_FLAG (tmp, FLAG_UNPAID)) 1344 if (QUERY_FLAG (tmp, FLAG_UNPAID))
1348 { 1345 {
1349 int i = find_free_spot (tmp, op->map, op->x, op->y, 1, 9); 1346 int i = find_free_spot (tmp, op->map, op->x, op->y, 1, 9);
1350 1347
1351 remove_ob (tmp); 1348 tmp->remove ();
1352 1349
1353 if (i == -1) 1350 if (i == -1)
1354 i = 0; 1351 i = 0;
1355 1352
1356 tmp->map = op->map; 1353 tmp->map = op->map;
1420 { 1417 {
1421 LOG (llevError, "Internal shop-mat problem.\n"); 1418 LOG (llevError, "Internal shop-mat problem.\n");
1422 } 1419 }
1423 else 1420 else
1424 { 1421 {
1425 remove_ob (op); 1422 op->remove ();
1426 op->x += freearr_x[i]; 1423 op->x += freearr_x[i];
1427 op->y += freearr_y[i]; 1424 op->y += freearr_y[i];
1428 rv = insert_ob_in_map (op, op->map, shop_mat, 0) == NULL; 1425 rv = insert_ob_in_map (op, op->map, shop_mat, 0) == NULL;
1429 } 1426 }
1430 } 1427 }
1853 } 1850 }
1854 return; 1851 return;
1855 } 1852 }
1856 1853
1857 play_sound_player_only (op->contr, SOUND_LEARN_SPELL, 0, 0); 1854 play_sound_player_only (op->contr, SOUND_LEARN_SPELL, 0, 0);
1858 tmp = get_object (); 1855 tmp = object::create ();
1859 copy_object (spell, tmp); 1856 spell->copy_to (tmp);
1860 insert_ob_in_ob (tmp, op); 1857 insert_ob_in_ob (tmp, op);
1861 1858
1862 if (special_prayer) 1859 if (special_prayer)
1863 { 1860 {
1864 SET_FLAG (tmp, FLAG_STARTEQUIP); 1861 SET_FLAG (tmp, FLAG_STARTEQUIP);
1887 } 1884 }
1888 1885
1889 new_draw_info_format (NDI_UNIQUE | NDI_NAVY, 0, op, "You lose knowledge of %s.", spell); 1886 new_draw_info_format (NDI_UNIQUE | NDI_NAVY, 0, op, "You lose knowledge of %s.", spell);
1890 player_unready_range_ob (op->contr, spob); 1887 player_unready_range_ob (op->contr, spob);
1891 esrv_remove_spell (op->contr, spob); 1888 esrv_remove_spell (op->contr, spob);
1892 remove_ob (spob); 1889 spob->destroy ();
1893 free_object (spob);
1894} 1890}
1895 1891
1896/** 1892/**
1897 * Handles player applying a spellbook. 1893 * Handles player applying a spellbook.
1898 * Checks whether player has knowledge of required skill, doesn't already know the spell, 1894 * Checks whether player has knowledge of required skill, doesn't already know the spell,
1936 new_draw_info (NDI_UNIQUE, 0, op, "You can't read! Your attempt fails."); 1932 new_draw_info (NDI_UNIQUE, 0, op, "You can't read! Your attempt fails.");
1937 return; 1933 return;
1938 } 1934 }
1939 1935
1940 spell = tmp->inv; 1936 spell = tmp->inv;
1937
1941 if (!spell) 1938 if (!spell)
1942 { 1939 {
1943 LOG (llevError, "apply_spellbook: Book %s has no spell in it!\n", &tmp->name); 1940 LOG (llevError, "apply_spellbook: Book %s has no spell in it!\n", &tmp->name);
1944 new_draw_info (NDI_UNIQUE, 0, op, "The spellbook symbols make no sense."); 1941 new_draw_info (NDI_UNIQUE, 0, op, "The spellbook symbols make no sense.");
1945 return; 1942 return;
1946 } 1943 }
1947 if (spell->level > (skop->level + 10)) 1944
1945 if (skop->level < int (sqrtf (spell->level) * 1.5f))
1948 { 1946 {
1949 new_draw_info (NDI_UNIQUE, 0, op, "You are unable to decipher the strange symbols."); 1947 new_draw_info (NDI_UNIQUE, 0, op, "It is too hard to read at your level: You are unable to decipher the strange symbols.");
1950 return; 1948 return;
1951 } 1949 }
1952 1950
1953 new_draw_info_format (NDI_UNIQUE, 0, op, "The spellbook contains the %s level spell %s.", get_levelnumber (spell->level), &spell->name); 1951 new_draw_info_format (NDI_UNIQUE, 0, op, "The spellbook contains the %s level spell %s.", get_levelnumber (spell->level), &spell->name);
1954 1952
2102 } 2100 }
2103 while (tmp->inv) 2101 while (tmp->inv)
2104 { 2102 {
2105 treas = tmp->inv; 2103 treas = tmp->inv;
2106 2104
2107 remove_ob (treas); 2105 treas->remove ();
2108 new_draw_info_format (NDI_UNIQUE, 0, op, "You find %s in the chest.", query_name (treas)); 2106 new_draw_info_format (NDI_UNIQUE, 0, op, "You find %s in the chest.", query_name (treas));
2109 2107
2110 treas->x = op->x; 2108 treas->x = op->x;
2111 treas->y = op->y; 2109 treas->y = op->y;
2112 treas = insert_ob_in_map (treas, op->map, op, INS_BELOW_ORIGINATOR); 2110 treas = insert_ob_in_map (treas, op->map, op, INS_BELOW_ORIGINATOR);
2113 2111
2114 if (treas && (treas->type == RUNE || treas->type == TRAP) && treas->level && QUERY_FLAG (op, FLAG_ALIVE)) 2112 if (treas && (treas->type == RUNE || treas->type == TRAP) && treas->level && QUERY_FLAG (op, FLAG_ALIVE))
2115 spring_trap (treas, op); 2113 spring_trap (treas, op);
2114
2116 /* If either player or container was destroyed, no need to do 2115 /* If either player or container was destroyed, no need to do
2117 * further processing. I think this should be enclused with 2116 * further processing. I think this should be enclused with
2118 * spring trap above, as I don't think there is otherwise 2117 * spring trap above, as I don't think there is otherwise
2119 * any way for the treasure chest or player to get killed 2118 * any way for the treasure chest or player to get killed
2120 */ 2119 */
2367 } 2366 }
2368#endif 2367#endif
2369 INVOKE_PLAYER (LOGOUT, pl->contr); 2368 INVOKE_PLAYER (LOGOUT, pl->contr);
2370 /* Need to call terminate_all_pets() before we remove the player ob */ 2369 /* Need to call terminate_all_pets() before we remove the player ob */
2371 terminate_all_pets (pl); 2370 terminate_all_pets (pl);
2372 remove_ob (pl); 2371 pl->remove ();
2373 pl->direction = 0; 2372 pl->direction = 0;
2374 new_draw_info_format (NDI_UNIQUE | NDI_ALL | NDI_DK_ORANGE, 5, pl, "%s leaves the game.", &pl->name); 2373 new_draw_info_format (NDI_UNIQUE | NDI_ALL | NDI_DK_ORANGE, 5, pl, "%s leaves the game.", &pl->name);
2375 2374
2376 /* update respawn position */ 2375 /* update respawn position */
2377 strcpy (pl->contr->savebed_map, pl->map->path); 2376 strcpy (pl->contr->savebed_map, pl->map->path);
2807 if (op->type != PLAYER && QUERY_FLAG (op, FLAG_WAS_WIZ) && !QUERY_FLAG (pl, FLAG_WAS_WIZ)) 2806 if (op->type != PLAYER && QUERY_FLAG (op, FLAG_WAS_WIZ) && !QUERY_FLAG (pl, FLAG_WAS_WIZ))
2808 { 2807 {
2809 play_sound_map (pl->map, pl->x, pl->y, SOUND_OB_EVAPORATE); 2808 play_sound_map (pl->map, pl->x, pl->y, SOUND_OB_EVAPORATE);
2810 new_draw_info (NDI_UNIQUE, 0, pl, "The object disappears in a puff " "of smoke!"); 2809 new_draw_info (NDI_UNIQUE, 0, pl, "The object disappears in a puff " "of smoke!");
2811 new_draw_info (NDI_UNIQUE, 0, pl, "It must have been an illusion."); 2810 new_draw_info (NDI_UNIQUE, 0, pl, "It must have been an illusion.");
2812 remove_ob (op); 2811 op->destroy ();
2813 free_object (op);
2814 return 1; 2812 return 1;
2815 } 2813 }
2816 2814
2817 pl->contr->last_used = op; 2815 pl->contr->last_used = op;
2818 pl->contr->last_used_id = op->count; 2816 pl->contr->last_used_id = op->count;
2952 SET_FLAG (tmp2, FLAG_INV_LOCKED); 2950 SET_FLAG (tmp2, FLAG_INV_LOCKED);
2953 2951
2954 if (who->type == PLAYER) 2952 if (who->type == PLAYER)
2955 esrv_del_item (who->contr, op->count); 2953 esrv_del_item (who->contr, op->count);
2956 2954
2957 remove_ob (op); 2955 op->destroy ();
2958 free_object (op);
2959 insert_ob_in_ob (tmp2, who); 2956 insert_ob_in_ob (tmp2, who);
2960 fix_player (who); 2957 fix_player (who);
2961 if (QUERY_FLAG (op, FLAG_CURSED) || QUERY_FLAG (op, FLAG_DAMNED)) 2958 if (QUERY_FLAG (op, FLAG_CURSED) || QUERY_FLAG (op, FLAG_DAMNED))
2962 { 2959 {
2963 if (who->type == PLAYER) 2960 if (who->type == PLAYER)
3488 3485
3489 /* Remove the old lantern */ 3486 /* Remove the old lantern */
3490 if (who->type == PLAYER) 3487 if (who->type == PLAYER)
3491 esrv_del_item (who->contr, op->count); 3488 esrv_del_item (who->contr, op->count);
3492 3489
3493 remove_ob (op); 3490 op->destroy ();
3494 free_object (op);
3495 3491
3496 /* insert the portion that was split off */ 3492 /* insert the portion that was split off */
3497 if (tmp != NULL) 3493 if (tmp != NULL)
3498 { 3494 {
3499 (void) insert_ob_in_ob (tmp, who); 3495 (void) insert_ob_in_ob (tmp, who);
3657 switch (op->type) 3653 switch (op->type)
3658 { 3654 {
3659 case SHOP_FLOOR: 3655 case SHOP_FLOOR:
3660 if (!HAS_RANDOM_ITEMS (op)) 3656 if (!HAS_RANDOM_ITEMS (op))
3661 return 0; 3657 return 0;
3658
3662 do 3659 do
3663 { 3660 {
3664 i = 10; /* let's give it 10 tries */ 3661 i = 10; /* let's give it 10 tries */
3665 while ((tmp = generate_treasure (op->randomitems, 3662 while ((tmp = generate_treasure (op->randomitems,
3666 op->stats.exp ? (int) op->stats.exp : MAX (op->map->difficulty, 5))) == NULL && --i); 3663 op->stats.exp ? (int) op->stats.exp : MAX (op->map->difficulty, 5))) == NULL && --i);
3667 if (tmp == NULL) 3664 if (tmp == NULL)
3668 return 0; 3665 return 0;
3669 if (QUERY_FLAG (tmp, FLAG_CURSED) || QUERY_FLAG (tmp, FLAG_DAMNED)) 3666 if (QUERY_FLAG (tmp, FLAG_CURSED) || QUERY_FLAG (tmp, FLAG_DAMNED))
3670 { 3667 {
3671 free_object (tmp); 3668 tmp->destroy ();
3672 tmp = NULL; 3669 tmp = NULL;
3673 } 3670 }
3674 } 3671 }
3675 while (!tmp); 3672 while (!tmp);
3673
3676 tmp->x = op->x; 3674 tmp->x = op->x;
3677 tmp->y = op->y; 3675 tmp->y = op->y;
3678 SET_FLAG (tmp, FLAG_UNPAID); 3676 SET_FLAG (tmp, FLAG_UNPAID);
3679 insert_ob_in_map (tmp, op->map, NULL, 0); 3677 insert_ob_in_map (tmp, op->map, NULL, 0);
3680 CLEAR_FLAG (op, FLAG_AUTO_APPLY); 3678 CLEAR_FLAG (op, FLAG_AUTO_APPLY);
3682 break; 3680 break;
3683 3681
3684 case TREASURE: 3682 case TREASURE:
3685 if (QUERY_FLAG (op, FLAG_IS_A_TEMPLATE)) 3683 if (QUERY_FLAG (op, FLAG_IS_A_TEMPLATE))
3686 return 0; 3684 return 0;
3685
3687 while ((op->stats.hp--) > 0) 3686 while ((op->stats.hp--) > 0)
3688 create_treasure (op->randomitems, op, op->map ? GT_ENVIRONMENT : 0, 3687 create_treasure (op->randomitems, op, op->map ? GT_ENVIRONMENT : 0,
3689 op->stats.exp ? (int) op->stats.exp : op->map == NULL ? 14 : op->map->difficulty, 0); 3688 op->stats.exp ? (int) op->stats.exp : op->map == NULL ? 14 : op->map->difficulty, 0);
3690 3689
3691 /* If we generated an object and put it in this object inventory, 3690 /* If we generated an object and put it in this object inventory,
3694 * that is put inside other objects. 3693 * that is put inside other objects.
3695 */ 3694 */
3696 for (tmp = op->inv; tmp; tmp = tmp2) 3695 for (tmp = op->inv; tmp; tmp = tmp2)
3697 { 3696 {
3698 tmp2 = tmp->below; 3697 tmp2 = tmp->below;
3699 remove_ob (tmp); 3698 tmp->remove ();
3699
3700 if (op->env) 3700 if (op->env)
3701 insert_ob_in_ob (tmp, op->env); 3701 insert_ob_in_ob (tmp, op->env);
3702 else 3702 else
3703 free_object (tmp); 3703 tmp->destroy ();
3704 } 3704 }
3705 remove_ob (op); 3705
3706 free_object (op); 3706 op->destroy ();
3707 break; 3707 break;
3708 } 3708 }
3709 return tmp ? 1 : 0; 3709 return tmp ? 1 : 0;
3710} 3710}
3711 3711
3859 SET_FLAG (force, FLAG_APPLIED); 3859 SET_FLAG (force, FLAG_APPLIED);
3860 change_abil (who, force); 3860 change_abil (who, force);
3861 insert_ob_in_ob (force, who); 3861 insert_ob_in_ob (force, who);
3862 } 3862 }
3863 else 3863 else
3864 { 3864 force->destroy ();
3865 free_object (force);
3866 }
3867 3865
3868 /* check for hp, sp change */ 3866 /* check for hp, sp change */
3869 if (food->stats.hp != 0) 3867 if (food->stats.hp != 0)
3870 { 3868 {
3871 if (QUERY_FLAG (food, FLAG_CURSED)) 3869 if (QUERY_FLAG (food, FLAG_CURSED))
3923 { /* lighter gets used up */ 3921 { /* lighter gets used up */
3924 /* Split multiple lighters if they're being used up. Otherwise * 3922 /* Split multiple lighters if they're being used up. Otherwise *
3925 * one charge from each would be used up. --DAMN */ 3923 * one charge from each would be used up. --DAMN */
3926 if (lighter->nrof > 1) 3924 if (lighter->nrof > 1)
3927 { 3925 {
3928 object *oneLighter = get_object (); 3926 object *oneLighter = object::create ();
3929 3927
3930 copy_object (lighter, oneLighter); 3928 lighter->copy_to (oneLighter);
3931 lighter->nrof -= 1; 3929 lighter->nrof -= 1;
3932 oneLighter->nrof = 1; 3930 oneLighter->nrof = 1;
3933 oneLighter->stats.food--; 3931 oneLighter->stats.food--;
3934 esrv_send_item (who, lighter); 3932 esrv_send_item (who, lighter);
3935 oneLighter = insert_ob_in_ob (oneLighter, who); 3933 oneLighter = insert_ob_in_ob (oneLighter, who);
3991 object *tmp; 3989 object *tmp;
3992 3990
3993 new_draw_info (NDI_UNIQUE, 0, op, "Your spell warps!."); 3991 new_draw_info (NDI_UNIQUE, 0, op, "Your spell warps!.");
3994 tmp = get_archetype (SPELL_WONDER); 3992 tmp = get_archetype (SPELL_WONDER);
3995 cast_wonder (op, op, 0, tmp); 3993 cast_wonder (op, op, 0, tmp);
3996 free_object (tmp); 3994 tmp->destroy ();
3997 } 3995 }
3998 else if (failure <= -15 && failure > -35) 3996 else if (failure <= -15 && failure > -35)
3999 { /* drain mana */ 3997 { /* drain mana */
4000 new_draw_info (NDI_UNIQUE, 0, op, "Your mana is drained!."); 3998 new_draw_info (NDI_UNIQUE, 0, op, "Your mana is drained!.");
4001 op->stats.sp -= random_roll (0, power - 1, op, PREFER_LOW); 3999 op->stats.sp -= random_roll (0, power - 1, op, PREFER_LOW);
4024 object *tmp; 4022 object *tmp;
4025 4023
4026 tmp = get_archetype (LOOSE_MANA); 4024 tmp = get_archetype (LOOSE_MANA);
4027 cast_magic_storm (op, tmp, power); 4025 cast_magic_storm (op, tmp, power);
4028 new_draw_info (NDI_UNIQUE, 0, op, "You unlease uncontrolled mana!"); 4026 new_draw_info (NDI_UNIQUE, 0, op, "You unlease uncontrolled mana!");
4029 free_object (tmp); 4027 tmp->destroy ();
4030 } 4028 }
4031 } 4029 }
4032} 4030}
4033 4031
4034void 4032void

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines