diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/008-1/prsm.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/008-1/prsm.txt b/npc/008-1/prsm.txt index 3a5e97bb..929deacc 100644 --- a/npc/008-1/prsm.txt +++ b/npc/008-1/prsm.txt @@ -69,20 +69,20 @@ OnWarning: case 8: dispbottom l("Moving player preventively."); getmapxy(.@m$, .@x, .@y, 0); - slide .@x+any(1,-1), .@y+(any(1,-1); + slide .@x+any(1,-1), .@y+any(1,-1); break; case 6: case 9: dispbottom l("Moving and killing player preventively."); getmapxy(.@m$, .@x, .@y, 0); - slide .@x+any(1,-1), .@y+(any(1,-1); + slide .@x+any(1,-1), .@y+any(1,-1); percentheal -100, -100; break; case 10: default: dispbottom l("Preventively banning annoying player so Prsm can rest in peace."); getmapxy(.@m$, .@x, .@y, 0); - slide .@x+any(1,-1), .@y+(any(1,-1); + slide .@x+any(1,-1), .@y+any(1,-1); atcommand "@ban 10mn "+strcharinfo(0); // This is half sane, half insane break; } |