diff options
author | gumi <mekolat@users.noreply.github.com> | 2017-01-15 11:54:43 -0500 |
---|---|---|
committer | gumi <mekolat@users.noreply.github.com> | 2017-01-15 11:54:43 -0500 |
commit | fc4c06b12d35e62bcf52e19bd8a8754166b55efc (patch) | |
tree | 65a69067d4d5650ab7c02f3892234ce2ba3141b4 /npc/functions | |
parent | f0687a529a0a143b0ceca96eb0546c39199f2878 (diff) | |
download | serverdata-fc4c06b12d35e62bcf52e19bd8a8754166b55efc.tar.gz serverdata-fc4c06b12d35e62bcf52e19bd8a8754166b55efc.tar.bz2 serverdata-fc4c06b12d35e62bcf52e19bd8a8754166b55efc.tar.xz serverdata-fc4c06b12d35e62bcf52e19bd8a8754166b55efc.zip |
rectify the indentation
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/npcmovegraph.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/npcmovegraph.txt b/npc/functions/npcmovegraph.txt index 3f06c73f..b26f9a16 100644 --- a/npc/functions/npcmovegraph.txt +++ b/npc/functions/npcmovegraph.txt @@ -61,7 +61,7 @@ function script findmovegraphlabel { * fromPositionLabel, toPositionLabel -- starting and ending position of NPC move * moveChanceWeight -- positive integer, represents the chance of moving in given direction. (optional) * moveFlags -- if .mg_flags & moveFlags != 0, move is possible. (optional) - * postCommand -- either "moveon" (start moving to next location straight after arriving from + * postCommand -- either "moveon" (start moving to next location straight after arriving from * fromPositionLabel to toPositionLabel) or a semicolon-separated set of commands * ("wait 3", "emote 5" etc, see `execmovecmd') that will be executed after arrival. * The commands don't have to end with ";moveon", it's executed in the end by default. @@ -355,7 +355,7 @@ function script movetonextpoint { if (!.@weight_sum) { npcdebug("error: cannot pick next walk point. flags=" + - getvariableofnpc(.mg_flags, strnpcinfo(3))); + getvariableofnpc(.mg_flags, strnpcinfo(3))); return; } |