| 244 | } |
| 245 | |
| 246 | staticfn void |
| 247 | cannot_push_msg(struct obj *otmp, coordxy sx, coordxy sy) |
| 248 | { |
| 249 | const char *what; |
| 250 | |
| 251 | what = the(xname(otmp)); |
| 252 | if (u.usteed) |
| 253 | pline("%s tries to move %s, but cannot.", |
| 254 | YMonnam(u.usteed), what); |
| 255 | else |
| 256 | You("try to move %s, but in vain.", what); |
| 257 | if (Blind) |
| 258 | feel_location(sx, sy); |
| 259 | } |
| 260 | |
| 261 | staticfn int |
| 262 | cannot_push(struct obj *otmp, coordxy sx, coordxy sy) |
no test coverage detected