- Zwei Geschosse pro Katapult

This commit is contained in:
Christian Schlittchen 2002-05-11 20:38:34 +00:00
parent 5c52d31d0e
commit fe0d2b576f
2 changed files with 2 additions and 2 deletions

View File

@ -731,7 +731,7 @@ print_curses(FILE *F, const faction *viewer, const void * obj, typ_t typ, int in
if (fval(a->type, ATF_CURSE)) {
curse *c = (curse *)a->data.v;
if (c->type->curseinfo) {
if (c->type->cansee){
if (c->type->cansee) {
self = c->type->cansee(viewer, obj, typ, c, self);
}
dh = c->type->curseinfo(viewer->locale, obj, typ, c, self);

View File

@ -2861,7 +2861,7 @@ give_cammo(void)
for(f=factions; f; f=f->next) {
for(u=f->units; u; u=u->nextF) {
i_change(&u->items, &it_catapultammo, i_get(u->items, olditemtype[I_CATAPULT]));
i_change(&u->items, &it_catapultammo, i_get(u->items, olditemtype[I_CATAPULT])*2);
}
}