give a message when entering a Gehennom level other than the Valley; also given if restoring a game in that situation */
| 2000 | /* give a message when entering a Gehennom level other than the Valley; |
| 2001 | also given if restoring a game in that situation */ |
| 2002 | void |
| 2003 | hellish_smoke_mesg(void) |
| 2004 | { |
| 2005 | if (svl.level.flags.temperature) |
| 2006 | pline("It is %s here.", |
| 2007 | svl.level.flags.temperature > 0 ? "hot" : "cold"); |
| 2008 | |
| 2009 | if (In_hell(&u.uz) && svl.level.flags.temperature > 0) |
| 2010 | You("%s smoke...", |
| 2011 | olfaction(gy.youmonst.data) ? "smell" : "sense"); |
| 2012 | } |
| 2013 | |
| 2014 | /* give a message when the level temperature is different from previous */ |
| 2015 | staticfn void |