summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-12-26 12:08:43 -0300
committerJesusaves <cpntb1@ymail.com>2021-12-26 12:08:43 -0300
commitc1dad2e6c965fb4c8ff76cefe29bd2ceb6f6ba78 (patch)
treee728cbbcbfda7ed118677e78d2d242f47b315abb
parent4908618bc01e2a8df94b8bc795ca5c66be04c1ea (diff)
downloadserverdata-c1dad2e6c965fb4c8ff76cefe29bd2ceb6f6ba78.tar.gz
serverdata-c1dad2e6c965fb4c8ff76cefe29bd2ceb6f6ba78.tar.bz2
serverdata-c1dad2e6c965fb4c8ff76cefe29bd2ceb6f6ba78.tar.xz
serverdata-c1dad2e6c965fb4c8ff76cefe29bd2ceb6f6ba78.zip
Allow the ban to be enforced by setting CAPTURE_FLAG to -1 or lower.
Right now, this doesn't happens - I'll likely have GM Team enforcing this. If players want to allow splash on their matches by agreement I'm fine with it.
-rw-r--r--npc/006-6/core.txt2
-rw-r--r--npc/006-8/kage.txt4
2 files changed, 3 insertions, 3 deletions
diff --git a/npc/006-6/core.txt b/npc/006-6/core.txt
index 80b5689dd..bb391c322 100644
--- a/npc/006-6/core.txt
+++ b/npc/006-6/core.txt
@@ -8,7 +8,7 @@
OnTouch:
if (!(getq(General_EasterEggs) & EE_SNOWMAN)) goto L_Reject;
if (SCANDORPTS < 300) goto L_Reject;
- if (!CAPTURE_FLAG) goto L_Reject;
+ if (CAPTURE_FLAG < 1) goto L_Reject;
if (getq(General_Narrator) < 17) goto L_Reject; // Frostia Arc must be finished
/* Some of previous sections come back to bite you, now */
if (CRAZYPOINTS < 10) goto L_Reject;
diff --git a/npc/006-8/kage.txt b/npc/006-8/kage.txt
index 515de03d5..1fb1b6af1 100644
--- a/npc/006-8/kage.txt
+++ b/npc/006-8/kage.txt
@@ -41,7 +41,7 @@ OnTouch:
end;
OnTouch:
- if ($@CAPTURE_INSC)
+ if ($@CAPTURE_INSC && CAPTURE_FLAG >= 0)
bgjoin($@CAPTURE_T1, "006-8", 37, 58);
end;
}
@@ -50,7 +50,7 @@ OnTouch:
end;
OnTouch:
- if ($@CAPTURE_INSC)
+ if ($@CAPTURE_INSC && CAPTURE_FLAG >= 0)
bgjoin($@CAPTURE_T2, "006-8", 52, 58);
end;
}