2001-01-25 10:37:55 +01:00
|
|
|
/* vi: set ts=2:
|
|
|
|
*
|
2001-04-14 13:39:14 +02:00
|
|
|
*
|
2001-01-25 10:37:55 +01:00
|
|
|
* Eressea PB(E)M host Copyright (C) 1998-2000
|
|
|
|
* Christian Schlittchen (corwin@amber.kn-bremen.de)
|
|
|
|
* Katja Zedel (katze@felidae.kn-bremen.de)
|
|
|
|
* Henning Peters (faroul@beyond.kn-bremen.de)
|
|
|
|
* Enno Rehling (enno@eressea-pbem.de)
|
|
|
|
* Ingo Wilken (Ingo.Wilken@informatik.uni-oldenburg.de)
|
|
|
|
*
|
|
|
|
* This program may not be used, modified or distributed without
|
|
|
|
* prior permission by the authors of Eressea.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
2001-02-03 14:45:35 +01:00
|
|
|
#include <eressea.h>
|
2001-01-25 10:37:55 +01:00
|
|
|
#include "spells.h"
|
|
|
|
|
|
|
|
#include "alp.h"
|
|
|
|
|
2001-04-16 22:32:56 +02:00
|
|
|
#include <curse.h>
|
|
|
|
|
2001-02-03 14:45:35 +01:00
|
|
|
/*
|
|
|
|
#include "firewall.h"
|
|
|
|
*/
|
|
|
|
struct curse_type;
|
|
|
|
extern const struct curse_type ct_firewall;
|
|
|
|
extern void ct_register(const struct curse_type * ct);
|
|
|
|
|
2001-01-25 10:37:55 +01:00
|
|
|
void
|
2002-01-09 09:20:33 +01:00
|
|
|
register_spells(void)
|
2001-01-25 10:37:55 +01:00
|
|
|
{
|
|
|
|
/* sp_summon_alp */
|
2002-01-09 09:20:33 +01:00
|
|
|
register_alp();
|
2001-02-03 14:45:35 +01:00
|
|
|
/* init_firewall(); */
|
|
|
|
ct_register(&ct_firewall);
|
2002-05-01 21:08:32 +02:00
|
|
|
register_curses();
|
2001-01-25 10:37:55 +01:00
|
|
|
}
|