summaryrefslogtreecommitdiff
path: root/src/script.cc
blob: 6b0f4ebdee03ec6cb930308cf646c6bedcd5c32e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * Copyright (c) 2001 Dark God
 *
 * This software may be copied and distributed for educational, research, and
 * not for profit purposes provided that this copyright and statement are
 * included in all such copies.
 */

#include "script.h"

#include "angband.h"
#include "init2.hpp"
#include "q_library.hpp"
#include "spells4.hpp"
#include "spells5.hpp"
#include "spells6.hpp"


void init_lua_init()
{
	/* Initialize schooled spells */
	schools_init();
	school_spells_init();
	init_school_books();

	/* Post-spell creation initialization */
	initialize_bookable_spells();

	/* Finish up the corruptions */
	init_corruptions();
}