forked from github/server
- Fix mapper, Gebäude erschaffen
This commit is contained in:
parent
58c88ccd82
commit
c29da6e179
|
@ -4,7 +4,7 @@ ifndef ERESSEA
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Hier definieren, damit nicht '@gcc'
|
# Hier definieren, damit nicht '@gcc'
|
||||||
CC = colorgcc
|
CC = gcc
|
||||||
AR = ar
|
AR = ar
|
||||||
CTAGS = ctags
|
CTAGS = ctags
|
||||||
LD = gcc
|
LD = gcc
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* vi: set ts=2:
|
/* vi: set ts=2:
|
||||||
*
|
*
|
||||||
* $Id: map_modify.c,v 1.4 2001/02/09 13:53:53 corwin Exp $
|
* $Id: map_modify.c,v 1.5 2001/02/18 07:45:43 corwin Exp $
|
||||||
* Eressea PB(E)M host Copyright (C) 1998-2000
|
* Eressea PB(E)M host Copyright (C) 1998-2000
|
||||||
* Christian Schlittchen (corwin@amber.kn-bremen.de)
|
* Christian Schlittchen (corwin@amber.kn-bremen.de)
|
||||||
* Katja Zedel (katze@felidae.kn-bremen.de)
|
* Katja Zedel (katze@felidae.kn-bremen.de)
|
||||||
|
@ -548,7 +548,7 @@ NeueBurg(region * r)
|
||||||
waddch(win, '|');
|
waddch(win, '|');
|
||||||
}
|
}
|
||||||
wmove(win, 1, 2);
|
wmove(win, 1, 2);
|
||||||
wAddstr((char*)oldbuildings[i]->_name);
|
wAddstr((char*)oldbuildings[q]->_name);
|
||||||
wrefresh(win);
|
wrefresh(win);
|
||||||
|
|
||||||
b = new_building(oldbuildings[q], r, NULL);
|
b = new_building(oldbuildings[q], r, NULL);
|
||||||
|
|
Loading…
Reference in New Issue