MCPcopy Create free account
hub / github.com/NetHack/NetHack / pline_mon

Function pline_mon

src/pline.c:137–150  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

135}
136
137void
138pline_mon(struct monst *mtmp, const char *line, ...)
139{
140 va_list the_args;
141
142 if (mtmp == &gy.youmonst)
143 set_msg_xy(0, 0);
144 else
145 set_msg_xy(mtmp->mx, mtmp->my);
146
147 va_start(the_args, line);
148 vpline(line, the_args);
149 va_end(the_args);
150}
151
152staticfn void
153vpline(const char *line, va_list the_args)

Callers 15

mdrop_objFunction · 0.85
mhitm_mgc_atk_negatedFunction · 0.85
mhitm_ad_rustFunction · 0.85
mhitm_ad_dcayFunction · 0.85
mhitm_ad_drliFunction · 0.85
mhitm_ad_fireFunction · 0.85
mhitm_ad_coldFunction · 0.85
mhitm_ad_elecFunction · 0.85
mhitm_ad_acidFunction · 0.85
mhitm_ad_tlptFunction · 0.85
mhitm_ad_cursFunction · 0.85
mhitm_ad_drinFunction · 0.85

Calls 2

set_msg_xyFunction · 0.85
vplineFunction · 0.85

Tested by

no test coverage detected