aboutsummaryrefslogtreecommitdiffstats
path: root/inc/messages.inc
diff options
context:
space:
mode:
Diffstat (limited to 'inc/messages.inc')
-rw-r--r--inc/messages.inc12
1 files changed, 10 insertions, 2 deletions
diff --git a/inc/messages.inc b/inc/messages.inc
index d6ea87e..5b1631f 100644
--- a/inc/messages.inc
+++ b/inc/messages.inc
@@ -8,10 +8,18 @@ $messages = array(
"guild_already_built" => "You have aready built a guild."
);
-function sendError($msg) {
+function sendMessage($type, $msg) {
global $messages;
$text = $messages[$msg];
- echo json_encode(array("error" => $text));
+ echo json_encode(array($type => $text));
+}
+
+function sendError($msg) {
+ sendMessage("error", $msg);
+}
+
+function sendInfo($msg) {
+ sendMessage("info", $msg);
}
?>