forked from github/server
d5f8448d7d
Since the return of display_item() implies that the item, which is definitely an item but not a potion at this point, is neither in the inventory of the unit nor an item in the region or the faction's item pool, the existing message 36 is now triggered in this case and the previously conditional break is now done indepent of the outcome of display_item, which shouldn't be critical (it's an item so it can't be a spell or a race). |
||
---|---|---|
cJSON@43c04ad612 | ||
cmake@f1fb3943ac | ||
conf | ||
critbit@e538739b38 | ||
crypto@166fdc8c14 | ||
cutest@6e268687db | ||
dlmalloc@f1446c47ca | ||
doc | ||
iniparser@ecf956b980 | ||
lunit@155c965944 | ||
process | ||
quicklist@f837dd31e5 | ||
res | ||
s | ||
scripts | ||
se | ||
share | ||
src | ||
storage@86b9674415 | ||
support | ||
tests | ||
tolua@e53fe09e57 | ||
.gitattributes | ||
.gitignore | ||
.gitmodules | ||
.travis.yml | ||
CMakeLists.txt | ||
LICENSE | ||
Makefile | ||
README.md | ||
autoconf.h.in | ||
configure | ||
schema.sql | ||
todo.md | ||
vs2010-build.bat | ||
vs2012-build.bat | ||
vs2013-build.bat | ||
vs2015-build.bat |
README.md
What is this?
This repository contains the source code for the Play-by-Mail strategy game Eressea.
Prerequisites
Eressea depends on a number of external libraries. On a recent Debian-based Linux system, this is the apt-get command to install all of them:
sudo apt-get install git cmake gcc make libxml2-dev liblua5.2-dev libtolua-dev libncurses5-dev libsqlite3-dev
How to check out and build the Eressea server
This repository relies heavily on the use of submodules, and it pulls in most of the code from those. The build system being used is cmake, which can create Makefiles on Unix, or Visual Studio project files on Windows. Here's how you clone and build the source on Ubuntu:
git clone --recursive git://github.com/eressea/server.git
cd server
./configure
./s/build
If you got this far and all went well, you have built a server (it is linked from the game
subdirectory), and it will have passed some basic functionality tests.