summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-12-11 18:45:42 -0200
committershennetsind <ind@henn.et>2013-12-11 18:45:42 -0200
commitf19fb901515040486b93cca47bd9aa287f841195 (patch)
treee4826a3dde388feedcae0b2cdb050dd6f6c8b96b /src
parentcb96c43a2cdfb970abf846531eb15697a2b19fc4 (diff)
downloadhercules-f19fb901515040486b93cca47bd9aa287f841195.tar.gz
hercules-f19fb901515040486b93cca47bd9aa287f841195.tar.bz2
hercules-f19fb901515040486b93cca47bd9aa287f841195.tar.xz
hercules-f19fb901515040486b93cca47bd9aa287f841195.zip
modified second "infinity loop !" error so that its different from the first
and thus doesn't cause confusion (and it wasn't loop-related anyway). Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src')
-rw-r--r--src/map/script.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/script.c b/src/map/script.c
index 744825257..0166ca471 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -3685,7 +3685,7 @@ void run_script_main(struct script_state *st) {
break;
}
if( !st->freeloop && cmdcount>0 && (--cmdcount)<=0 ){
- ShowError("run_script: infinity loop !\n");
+ ShowError("run_script: too many opeartions being processed non-stop !\n");
script->reportsrc(st);
st->state=END;
}