# HG changeset patch
# User Wuzzy <Wuzzy2@mail.ru>
# Date 1559912886 -7200
# Node ID a41b8b154f74c13f50bb2bcf3a3217433fc1f3a4
# Parent  40537955de63195dbc1ab0d27fbc21c000e02751
Remove kamikaze and piano strike from CTF and Control

diff -r 40537955de63 -r a41b8b154f74 share/hedgewars/Data/Maps/Control/map.lua
--- a/share/hedgewars/Data/Maps/Control/map.lua	Fri Jun 07 11:55:49 2019 +0200
+++ b/share/hedgewars/Data/Maps/Control/map.lua	Fri Jun 07 15:08:06 2019 +0200
@@ -341,6 +341,9 @@
 		AddAmmo(hhs[h], amTardis, 0)
 		-- Resurrector is pointless, all hogs are already automatically resurrected.
 		AddAmmo(hhs[h], amResurrector, 0)
+		-- Remove suicidal weapons as they might wipe out the team
+		AddAmmo(hhs[h], amKamikaze, 0)
+		AddAmmo(hhs[h], amPiano, 0)
 	end
 
 	ShowMission(missionName, missionCaption, missionHelp, 0, 0)
diff -r 40537955de63 -r a41b8b154f74 share/hedgewars/Data/Scripts/Multiplayer/Capture_the_Flag.lua
--- a/share/hedgewars/Data/Scripts/Multiplayer/Capture_the_Flag.lua	Fri Jun 07 11:55:49 2019 +0200
+++ b/share/hedgewars/Data/Scripts/Multiplayer/Capture_the_Flag.lua	Fri Jun 07 15:08:06 2019 +0200
@@ -527,6 +527,9 @@
 	for h=1, numhhs do
 		-- Hogs are resurrected for free, so this is pointless
 		AddAmmo(hhs[h], amResurrector, 0)
+		-- Remove suicidal weapons as they might wipe out the team
+		AddAmmo(hhs[h], amKamikaze, 0)
+		AddAmmo(hhs[h], amPiano, 0)
 	end
 
 	updateScores()