diff options
Diffstat (limited to 'npc/commands/scheduled-broadcasts.txt')
-rw-r--r-- | npc/commands/scheduled-broadcasts.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/npc/commands/scheduled-broadcasts.txt b/npc/commands/scheduled-broadcasts.txt index b578d78e1..74a182a23 100644 --- a/npc/commands/scheduled-broadcasts.txt +++ b/npc/commands/scheduled-broadcasts.txt @@ -8,10 +8,13 @@ function script StoneBoard { mes l("Please enter the message:"); next; input .@msg$; + debugmes "setMessage, received from input: "+.@msg$; .@msg$ = strip(.@msg$); + debugmes "setMessage, stripped: "+.@msg$; if (.@msg$ != "") { return .@msg$; } + debugmes "setMessage ------ FAILURE"; mes l("The message cannot be empty"); next; } while (.@msg$ == ""); |