X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fw_minstanex.qc;h=0d815ee6728d356ebeb29d5f95cb8c43d16a2399;hb=217e21a7eeff80a31374205fc2bc04112f1eebb0;hp=65d02dcb2d6422151b971a9b6c47e92cb1aa9e8f;hpb=0a6ce0928d11c81f66a7d3b63d2e6375169b6f47;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/w_minstanex.qc b/qcsrc/server/w_minstanex.qc index 65d02dcb2..0d815ee67 100644 --- a/qcsrc/server/w_minstanex.qc +++ b/qcsrc/server/w_minstanex.qc @@ -195,7 +195,7 @@ float w_minstanex(float req) { if (self.jump_interval <= time) { - self.jump_interval = time + 0.9 * W_WeaponRateFactor(); + self.jump_interval = time + cvar("g_balance_laser_primary_refire") * W_WeaponRateFactor(); // ugly minstagib hack to reuse the fire mode of the laser float w; @@ -255,9 +255,9 @@ float w_minstanex(float req) precache_sound("weapons/neximpact.wav"); } else if (req == WR_SUICIDEMESSAGE) - w_deathtypestring = "did the impossible"; + w_deathtypestring = "%s did the impossible"; else if (req == WR_KILLMESSAGE) - w_deathtypestring = "has been vaporized by"; + w_deathtypestring = "%s has been vaporized by %s"; return TRUE; } #endif