From 99a5290e2e348b80555bc38d5a2bcbdab8422d68 Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Fri, 20 May 2022 18:18:41 -0400 Subject: [PATCH] Lightning Shield has infinite draft distance now It's really pointless on Flame Shield, and Lightning Shield is boring. Flame Shield should just get a different passive. --- src/k_kart.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/k_kart.c b/src/k_kart.c index b09b22274..efb593ef7 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -1760,9 +1760,9 @@ static void K_UpdateDraft(player_t *player) UINT8 leniency; UINT8 i; - if (player->itemtype == KITEM_FLAMESHIELD) + if (player->itemtype == KITEM_LIGHTNINGSHIELD) { - // Flame Shield gets infinite draft distance as its passive effect. + // Lightning Shield gets infinite draft distance as its (other) passive effect. draftdistance = 0; } else