diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-31 14:23:02 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-31 14:23:02 -0300 |
commit | 593ba18cd9d549e9b6bc03eea5636e74affc7a7c (patch) | |
tree | d843775c9c800b669e07195271b8043eec29e74d | |
parent | ce905bed9c0cb995bb7d481b2e1eeaaeb2363aa9 (diff) | |
download | serverdata-593ba18cd9d549e9b6bc03eea5636e74affc7a7c.tar.gz serverdata-593ba18cd9d549e9b6bc03eea5636e74affc7a7c.tar.bz2 serverdata-593ba18cd9d549e9b6bc03eea5636e74affc7a7c.tar.xz serverdata-593ba18cd9d549e9b6bc03eea5636e74affc7a7c.zip |
Hotfix patch
-rw-r--r-- | npc/functions/siege.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/functions/siege.txt b/npc/functions/siege.txt index baca59a63..d4d56ac45 100644 --- a/npc/functions/siege.txt +++ b/npc/functions/siege.txt @@ -37,7 +37,7 @@ function script siege_calcdiff { for (.@i = 0; .@i < .@c; .@i++) { // Dead players are not counted if (.@deadcount) { - if (ispcdead(strcharinfo(0, "", .@players[.@i]))) { + if (false) { .@skip+=1; continue; } |