From 0e80da9ceac2589304ed688edc68f20285484c5f Mon Sep 17 00:00:00 2001 From: Marisa the Magician Date: Wed, 21 Sep 2022 18:58:22 +0200 Subject: [PATCH] Reduce self-damage from Quadravol rocket jumping. --- language.version | 4 ++-- zscript/dlc1/swwm_notashotgun.zsc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/language.version b/language.version index 93121fdc7..9b4fb0be0 100644 --- a/language.version +++ b/language.version @@ -1,3 +1,3 @@ [default] -SWWM_MODVER="\cyDEMOLITIONIST \cw1.3pre r492 \cu(Wed 21 Sep 18:35:37 CEST 2022)\c-"; -SWWM_SHORTVER="\cw1.3pre r492 \cu(2022-09-21 18:35:37)\c-"; +SWWM_MODVER="\cyDEMOLITIONIST \cw1.3pre r493 \cu(Wed 21 Sep 18:58:22 CEST 2022)\c-"; +SWWM_SHORTVER="\cw1.3pre r493 \cu(2022-09-21 18:58:22)\c-"; diff --git a/zscript/dlc1/swwm_notashotgun.zsc b/zscript/dlc1/swwm_notashotgun.zsc index 336caee8e..458f95d4d 100644 --- a/zscript/dlc1/swwm_notashotgun.zsc +++ b/zscript/dlc1/swwm_notashotgun.zsc @@ -222,7 +222,7 @@ Class Quadravol : SWWMWeapon Spawn("QuadExplLight3",origin); break; } - if ( pointblank || bMelee ) self.DamageMobj(invoker,self,bMelee?(20+idx*5):(40+idx*10),'Fire',DMG_EXPLOSION); + if ( pointblank || bMelee ) self.DamageMobj(invoker,self,bMelee?(5+idx*2):(10+idx*4),'Fire',DMG_EXPLOSION); for ( int i=0; i<(4+idx); i++ ) { let s = Spawn("SWWMSmoke",origin);