From 6468cf42b76a6cc7ae982f453c6fffbff79a839f Mon Sep 17 00:00:00 2001 From: nyuszika7h Date: Sun, 16 Nov 2014 10:33:56 +0100 Subject: [PATCH] fstasis: Improve non-negative integer message Suggested by @ecksdee. --- modules/wolfgame.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/wolfgame.py b/modules/wolfgame.py index 79866f1..892d007 100644 --- a/modules/wolfgame.py +++ b/modules/wolfgame.py @@ -5100,17 +5100,17 @@ def fstasis(cli, nick, chan, rest): amt = int(data[1]) except ValueError: if chan == nick: - pm(cli, nick, "The amount of stasis has to be a non-negative integer.") + pm(cli, nick, "The amount of stasis cannot be a negative integer.") else: - cli.notice(nick, "The amount of stasis has to be a non-negative integer.") + cli.notice(nick, "The amount of stasis cannot be a negative integer.") return if amt < 0: if chan == nick: - pm(cli, nick, "The amount of stasis has to be a non-negative integer.") + pm(cli, nick, "The amount of stasis cannot be a negative integer.") else: - cli.notice(nick, "The amount of stasis has to be a non-negative integer.") + cli.notice(nick, "The amount of stasis cannot be a negative integer.") return