From 2e9c9f9d7abe10628d12a8245b83ee4a9e0b0372 Mon Sep 17 00:00:00 2001 From: inkoalawetrust <56005600+inkoalawetrust@users.noreply.github.com> Date: Sat, 21 May 2022 00:54:15 +0300 Subject: [PATCH] Removed unneeded code. Remove the code I had written for an example actor for an article on the ZDoom wiki. --- ZScript.zsc | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/ZScript.zsc b/ZScript.zsc index 72cf5e0..1dc09cb 100644 --- a/ZScript.zsc +++ b/ZScript.zsc @@ -562,29 +562,4 @@ Class SmartMarine : Actor PLAY G 10 A_Pain(); Goto See; } -} - -Class PainfulArchvile : Archvile Replaces Archvile -{ - States - { - Missile: - VILE G 0 BRIGHT A_VileStart(); - VILE G 10 BRIGHT A_FaceTarget(); - VILE H 8 BRIGHT - { - A_VileTarget(); - If (Target) - Target.TriggerPainChance ('Fire',True); - } - VILE IJKLMN 8 BRIGHT - { - A_FaceTarget(); - If (Target) - Target.TriggerPainChance ('Fire',True); - } - VILE O 8 BRIGHT A_VileAttack(); - VILE P 20 BRIGHT; - Goto See; - } } \ No newline at end of file