Maelstrom: You don't need full shields in kid mode, especially in co-op multiplayer.

https://github.com/libsdl-org/Maelstrom/commit/30a48798b5a79aaea6c80e4726e87e1b3400c09c

From 30a48798b5a79aaea6c80e4726e87e1b3400c09c Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Fri, 25 Nov 2011 12:15:15 -0500
Subject: [PATCH] You don't need full shields in kid mode, especially in co-op
 multiplayer.

---
 game/player.cpp | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/game/player.cpp b/game/player.cpp
index 4798e520..74bafc9d 100644
--- a/game/player.cpp
+++ b/game/player.cpp
@@ -158,10 +158,9 @@ Player::NewShip(void)
 		}
 	}
 
-	// In Kid Mode you automatically get air brakes and full shields
+	// In Kid Mode you automatically get air brakes
 	if ( gGameInfo.IsKidMode() ) {
 		special |= AIR_BRAKES;
-		ShieldLevel = MAX_SHIELD;
 	}
 	return(Lives);
 }