Don't display message about not receiving a PM on first night.

This commit is contained in:
Vgr E.Barry 2015-01-11 21:21:19 -05:00
parent c29ed805e1
commit 8a35862cb8

View File

@ -5277,8 +5277,10 @@ def transition_night(cli):
pm(cli, g, gun_msg)
dmsg = (daydur_msg + "It is now nighttime. All players "+
"check for PMs from me for instructions. "+
"If you did not receive one, simply sit back, "+
"check for PMs from me for instructions.")
if not var.FIRST_NIGHT:
dmsg = (dmsg + " If you did not receive one, simply sit back, "+
"relax, and wait patiently for morning.")
cli.msg(chan, dmsg)
var.LOGGER.logMessage(dmsg.replace("\02", ""))