forked from github/server
- Fix FOLGE
This commit is contained in:
parent
5c961e997c
commit
777977b975
|
@ -1,6 +1,6 @@
|
|||
/* vi: set ts=2:
|
||||
*
|
||||
* $Id: spy.c,v 1.3 2001/01/31 17:40:49 corwin Exp $
|
||||
* $Id: spy.c,v 1.4 2001/02/07 20:42:30 corwin Exp $
|
||||
* Eressea PB(E)M host Copyright (C) 1998-2000
|
||||
* Christian Schlittchen (corwin@amber.kn-bremen.de)
|
||||
* Katja Zedel (katze@felidae.kn-bremen.de)
|
||||
|
@ -102,7 +102,7 @@ setstealth(unit * u, strlist * S)
|
|||
|
||||
/* Tarne ohne Parameter: Setzt maximale Tarnung */
|
||||
|
||||
if (*s == 0) {
|
||||
if (s == NULL || *s == 0) {
|
||||
u_seteffstealth(u, -1);
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* vi: set ts=2:
|
||||
*
|
||||
* $Id: movement.c,v 1.6 2001/02/04 09:46:47 corwin Exp $
|
||||
* $Id: movement.c,v 1.7 2001/02/07 20:42:31 corwin Exp $
|
||||
* Eressea PB(E)M host Copyright (C) 1998-2000
|
||||
* Christian Schlittchen (corwin@amber.kn-bremen.de)
|
||||
* Katja Zedel (katze@felidae.kn-bremen.de)
|
||||
|
@ -2082,9 +2082,9 @@ follow(void)
|
|||
&& getparam() == P_UNIT) {
|
||||
int id = read_unitid(u->faction, r);
|
||||
if (id>0) {
|
||||
unit * u = findunit(id);
|
||||
unit * uf = findunit(id);
|
||||
if (!a) {
|
||||
a = a_add(&u->attribs, make_follow(u));
|
||||
a = a_add(&u->attribs, make_follow(uf));
|
||||
}
|
||||
} else if (a) {
|
||||
a_remove(&u->attribs, a);
|
||||
|
|
Loading…
Reference in New Issue