[Fix] I don't quite understand this. Lua error on intel with ';' at end statements.

This commit is contained in:
Allanis 2013-02-07 21:44:45 +00:00
parent d112edc90b
commit 5386ad0f82
2 changed files with 3 additions and 3 deletions

View File

@ -3,8 +3,8 @@ control_rate = 2
-- Required "control" function.
function control()
say("IMA KILL YOU!!");
pushtask(0, "attack");
say("IMA KILL YOU!!")
pushtask(0, "attack")
end
function attack()

View File

@ -99,7 +99,7 @@ double gui_yoff = 0.;
// Messages.
#define MSG_SIZE_MAX 80
int msg_timeout = 2000;
int msg_timeout = 5000;
int msg_max = 5; // Max messages on screen.
typedef struct {
char str[MSG_SIZE_MAX];