forked from github/server
Merge branch 'master' into develop
This commit is contained in:
commit
ac4e32a8f5
|
@ -97,6 +97,15 @@ static void cunhash(curse * c)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
curse *cfindhash(int i)
|
||||||
|
{
|
||||||
|
curse *old;
|
||||||
|
|
||||||
|
for (old = cursehash[i % MAXENTITYHASH]; old; old = old->nexthash)
|
||||||
|
if (old->no == i)
|
||||||
|
return old;
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
/* ------------------------------------------------------------- */
|
/* ------------------------------------------------------------- */
|
||||||
/* at_curse */
|
/* at_curse */
|
||||||
void curse_init(attrib * a)
|
void curse_init(attrib * a)
|
||||||
|
|
|
@ -287,6 +287,7 @@ extern "C" {
|
||||||
void ct_remove(const char *c);
|
void ct_remove(const char *c);
|
||||||
void ct_checknames(void);
|
void ct_checknames(void);
|
||||||
|
|
||||||
|
curse *cfindhash(int i);
|
||||||
curse *findcurse(int curseid);
|
curse *findcurse(int curseid);
|
||||||
|
|
||||||
void curse_init(struct attrib *a);
|
void curse_init(struct attrib *a);
|
||||||
|
|
|
@ -1938,6 +1938,7 @@ int newunitid(void)
|
||||||
start_random_no = random_unit_no;
|
start_random_no = random_unit_no;
|
||||||
|
|
||||||
while (ufindhash(random_unit_no) || dfindhash(random_unit_no)
|
while (ufindhash(random_unit_no) || dfindhash(random_unit_no)
|
||||||
|
|| cfindhash(random_unit_no)
|
||||||
|| forbiddenid(random_unit_no)) {
|
|| forbiddenid(random_unit_no)) {
|
||||||
random_unit_no++;
|
random_unit_no++;
|
||||||
if (random_unit_no == MAX_UNIT_NR + 1) {
|
if (random_unit_no == MAX_UNIT_NR + 1) {
|
||||||
|
|
Loading…
Reference in New Issue