summaryrefslogtreecommitdiff
path: root/src/script.cc
blob: a9407352a4284d4a01a41e69e937864c711a47ee (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
/* File: script.c */

/* Purpose: scripting in lua */

/*
 * 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 "angband.h"
#include "q_library.h"


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();
}