diff options
author | shennetsind <ind@henn.et> | 2013-12-11 18:45:42 -0200 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-12-11 18:45:42 -0200 |
commit | f19fb901515040486b93cca47bd9aa287f841195 (patch) | |
tree | e4826a3dde388feedcae0b2cdb050dd6f6c8b96b /src/map | |
parent | cb96c43a2cdfb970abf846531eb15697a2b19fc4 (diff) | |
download | hercules-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/map')
-rw-r--r-- | src/map/script.c | 2 |
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; } |