X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fw_rifle.qc;h=1c5f766d7dbf2240ce03ee0bce3e149db4c48489;hb=e1750180c974fe0f5dd23f5a2d3ae70a9f420c19;hp=43f8a6cfb334b2a462eb65c66618616f6bcb8766;hpb=fd2b1a8ba60990ceca63c494e1fc6094c3b7f6b2;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/w_rifle.qc b/qcsrc/server/w_rifle.qc index 43f8a6cfb..1c5f766d7 100644 --- a/qcsrc/server/w_rifle.qc +++ b/qcsrc/server/w_rifle.qc @@ -1,5 +1,5 @@ #ifdef REGISTER_WEAPON -REGISTER_WEAPON(RIFLE, w_rifle, IT_NAILS, 7, WEP_FLAG_NORMAL | WEP_FLAG_RELOADABLE | WEP_TYPE_HITSCAN, BOT_PICKUP_RATING_MID, "campingrifle", "rifle", _("Rifle")) +REGISTER_WEAPON(RIFLE, w_rifle, IT_NAILS, 7, WEP_FLAG_MUTATORBLOCKED | WEP_FLAG_NORMAL | WEP_FLAG_RELOADABLE | WEP_TYPE_HITSCAN, BOT_PICKUP_RATING_MID, "campingrifle", "rifle", _("Rifle")) #else #ifdef SVQC @@ -229,19 +229,16 @@ float w_rifle(float req) } else if (req == WR_SUICIDEMESSAGE) { - if(w_deathtype & HITTYPE_SECONDARY) - w_deathtypestring = _("%s shot themself automatically"); - else - w_deathtypestring = _("%s sniped themself somehow"); + w_deathtypestring = _("%s is now thinking with portals"); } else if (req == WR_KILLMESSAGE) { if(w_deathtype & HITTYPE_SECONDARY) { if(w_deathtype & HITTYPE_BOUNCE) - w_deathtypestring = _("%s failed to hide from %s's bullet hail"); + w_deathtypestring = _("%s failed to hide from %s's rifle bullet hail"); else - w_deathtypestring = _("%s died in %s's bullet hail"); + w_deathtypestring = _("%s died in %s's rifle bullet hail"); } else { @@ -253,9 +250,9 @@ float w_rifle(float req) else { if(w_deathtype & HITTYPE_HEADSHOT) - w_deathtypestring = _("%s got hit in the head by %s"); + w_deathtypestring = _("%s got shot in the head with a rifle by %s"); else - w_deathtypestring = _("%s was sniped by %s"); + w_deathtypestring = _("%s was sniped with a rifle by %s"); } } }