Merge branch 'newsym_worm' of https://github.com/entrez/NetHack into NetHack-3.7

This commit is contained in:
nhmall
2024-11-30 20:14:40 -05:00
3 changed files with 19 additions and 1 deletions

View File

@@ -988,4 +988,15 @@ flip_worm_segs_horizontal(struct monst *worm, int minx, int maxx)
}
}
void
redraw_worm(struct monst *worm)
{
struct wseg *curr = wtails[worm->wormno];
while (curr) {
newsym(curr->wx, curr->wy);
curr = curr->nseg;
}
}
/*worm.c*/