X-Git-Url: https://git.yukkurigames.com/?p=rogue-pphs.git;a=blobdiff_plain;f=monsters.c;h=dabef92b9b18f1a36aa6f2c8c31fe16a7dc8c2d0;hp=8121959e0b6fb6673b9d666a8691151c911a7b35;hb=fb2bac38c74d2e7634bec392e0ab3c738c632883;hpb=a868f7779583a00316cb076fc4d62ccfb1488434 diff --git a/monsters.c b/monsters.c index 8121959..dabef92 100644 --- a/monsters.c +++ b/monsters.c @@ -3,7 +3,7 @@ * * @(#)monsters.c 3.18 (Berkeley) 6/15/81 * - * Rogue: Exploring the Dungeons of Doom + * Rogue: Exploring the Cavern of Cuties * Copyright (C) 1980, 1981 Michael Toy, Ken Arnold and Glenn Wichman * All rights reserved. * @@ -71,6 +71,7 @@ register coord *cp; strcpy(tp->t_stats.s_dmg,mp->m_stats.s_dmg); tp->t_stats.s_exp = mp->m_stats.s_exp; tp->t_stats.s_str.st_str = 10; + tp->t_stats.s_ont = rnd(1 << NUM_FEATURES); tp->t_flags = mp->m_flags; tp->t_turn = TRUE; tp->t_pack = NULL;