From c25774e311e7d73e10710d501de901a74c5a9960 Mon Sep 17 00:00:00 2001 From: Edoardo Prezioso Date: Thu, 24 Nov 2016 20:43:37 +0100 Subject: [PATCH] - Fixed the Super Shotgun refire mismatch. --- wadsrc/static/zscript/doom/weaponssg.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/doom/weaponssg.txt b/wadsrc/static/zscript/doom/weaponssg.txt index 75ac9f09e7..6c06fe6ec4 100644 --- a/wadsrc/static/zscript/doom/weaponssg.txt +++ b/wadsrc/static/zscript/doom/weaponssg.txt @@ -111,6 +111,7 @@ extend class StateProvider action void A_CloseShotgun2() { - A_PlaySound("weapons/sshotc", CHAN_WEAPON); + A_PlaySound("weapons/sshotc", CHAN_WEAPON); + A_Refire(); } }