"wdwpyramid" should be registered in register_spells, not init_spells

This commit is contained in:
Enno Rehling 2006-07-10 20:12:37 +00:00
parent 7c134e4f54
commit 997543b742
1 changed files with 1 additions and 1 deletions

View File

@ -9470,7 +9470,6 @@ init_spells(void)
at_register(&at_cursewall);
at_register(&at_unitdissolve);
at_register(&at_wdwpyramid);
register_function((pf_generic)&sp_wdwpyramid, "wdwpyramid");
register_bordertype(&bt_firewall);
register_bordertype(&bt_wisps);
register_bordertype(&bt_chaosgate);
@ -9484,4 +9483,5 @@ register_spells(void)
/* init_firewall(); */
ct_register(&ct_firewall);
register_curses();
register_function((pf_generic)&sp_wdwpyramid, "wdwpyramid");
}