From: TimePath Date: Thu, 1 Oct 2015 08:37:06 +0000 (+1000) Subject: Vehicles: fix tag_view X-Git-Tag: xonotic-v0.8.2~1874^2~21 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=08cbc6dde5de8249b123f0d56092aa65b3dd020d;p=xonotic%2Fxonotic-data.pk3dir.git Vehicles: fix tag_view --- diff --git a/qcsrc/common/vehicles/vehicle/bumblebee.qc b/qcsrc/common/vehicles/vehicle/bumblebee.qc index 65aa61937..ee276f2b2 100644 --- a/qcsrc/common/vehicles/vehicle/bumblebee.qc +++ b/qcsrc/common/vehicles/vehicle/bumblebee.qc @@ -14,7 +14,7 @@ CLASS(Bumblebee, Vehicle) /* hud_model */ ATTRIB(Bumblebee, hud_model, string, "models/vehicles/spiderbot_cockpit.dpm"); /* tags */ ATTRIB(Bumblebee, tag_head, string, ""); /* tags */ ATTRIB(Bumblebee, tag_hud, string, ""); -/* tags */ ATTRIB(Bumblebee, tag_hview, string, "tag_viewport"); +/* tags */ ATTRIB(Bumblebee, tag_view, string, "tag_viewport"); /* netname */ ATTRIB(Bumblebee, netname, string, "bumblebee"); /* fullname */ ATTRIB(Bumblebee, vehicle_name, string, _("Bumblebee")); /* icon */ ATTRIB(Bumblebee, m_icon, string, "vehicle_bumble"); diff --git a/qcsrc/common/vehicles/vehicle/racer.qc b/qcsrc/common/vehicles/vehicle/racer.qc index 98c84c210..13891c5fc 100644 --- a/qcsrc/common/vehicles/vehicle/racer.qc +++ b/qcsrc/common/vehicles/vehicle/racer.qc @@ -13,7 +13,7 @@ CLASS(Racer, Vehicle) /* hud_model */ ATTRIB(Racer, hud_model, string, "models/vehicles/wakizashi_cockpit.dpm"); /* tags */ ATTRIB(Racer, tag_head, string, ""); /* tags */ ATTRIB(Racer, tag_hud, string, ""); -/* tags */ ATTRIB(Racer, tag_hview, string, "tag_viewport"); +/* tags */ ATTRIB(Racer, tag_view, string, "tag_viewport"); /* netname */ ATTRIB(Racer, netname, string, "racer"); /* fullname */ ATTRIB(Racer, vehicle_name, string, _("Racer")); /* icon */ ATTRIB(Racer, m_icon, string, "vehicle_racer"); diff --git a/qcsrc/common/vehicles/vehicle/raptor.qc b/qcsrc/common/vehicles/vehicle/raptor.qc index 9387a7d48..5dcef76ad 100644 --- a/qcsrc/common/vehicles/vehicle/raptor.qc +++ b/qcsrc/common/vehicles/vehicle/raptor.qc @@ -14,7 +14,7 @@ CLASS(Raptor, Vehicle) /* hud_model */ ATTRIB(Raptor, hud_model, string, "models/vehicles/raptor_cockpit.dpm"); /* tags */ ATTRIB(Raptor, tag_head, string, ""); /* tags */ ATTRIB(Raptor, tag_hud, string, "tag_hud"); -/* tags */ ATTRIB(Raptor, tag_hview, string, "tag_camera"); +/* tags */ ATTRIB(Raptor, tag_view, string, "tag_camera"); /* netname */ ATTRIB(Raptor, netname, string, "raptor"); /* fullname */ ATTRIB(Raptor, vehicle_name, string, _("Raptor")); /* icon */ ATTRIB(Raptor, m_icon, string, "vehicle_raptor"); diff --git a/qcsrc/common/vehicles/vehicle/spiderbot.qc b/qcsrc/common/vehicles/vehicle/spiderbot.qc index 8a15d0a11..b05cf76ab 100644 --- a/qcsrc/common/vehicles/vehicle/spiderbot.qc +++ b/qcsrc/common/vehicles/vehicle/spiderbot.qc @@ -13,7 +13,7 @@ CLASS(Spiderbot, Vehicle) /* hud_model */ ATTRIB(Spiderbot, hud_model, string, "models/vehicles/spiderbot_cockpit.dpm"); /* tags */ ATTRIB(Spiderbot, tag_head, string, "tag_head"); /* tags */ ATTRIB(Spiderbot, tag_hud, string, "tag_hud"); -/* tags */ ATTRIB(Spiderbot, tag_hview, string, ""); +/* tags */ ATTRIB(Spiderbot, tag_view, string, ""); /* netname */ ATTRIB(Spiderbot, netname, string, "spiderbot"); /* fullname */ ATTRIB(Spiderbot, vehicle_name, string, _("Spiderbot")); /* icon */ ATTRIB(Spiderbot, m_icon, string, "vehicle_spider");