X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fcommon%2Fvehicles%2Fvehicle%2Fbumblebee_weapons.qc;h=5f4068a7d281ff3269d4cef825fbb3d333ed5765;hb=16e64ff58cf65d7b3e0815aadb530580a6aa251b;hp=fa05c6a6f12dbd46343c941148c46b4c14db0366;hpb=2183056a5b6e75d2e025aa6c718eeb6f87de31b6;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/common/vehicles/vehicle/bumblebee_weapons.qc b/qcsrc/common/vehicles/vehicle/bumblebee_weapons.qc index fa05c6a6f..5f4068a7d 100644 --- a/qcsrc/common/vehicles/vehicle/bumblebee_weapons.qc +++ b/qcsrc/common/vehicles/vehicle/bumblebee_weapons.qc @@ -27,16 +27,12 @@ bool bumble_raygun_send(entity this, entity to, float sf) if(sf & BRG_START) { - WriteCoord(MSG_ENTITY, this.hook_start_x); - WriteCoord(MSG_ENTITY, this.hook_start_y); - WriteCoord(MSG_ENTITY, this.hook_start_z); + WriteVector(MSG_ENTITY, this.hook_start); } if(sf & BRG_END) { - WriteCoord(MSG_ENTITY, this.hook_end_x); - WriteCoord(MSG_ENTITY, this.hook_end_y); - WriteCoord(MSG_ENTITY, this.hook_end_z); + WriteVector(MSG_ENTITY, this.hook_end); } return true; @@ -75,17 +71,13 @@ NET_HANDLE(ENT_CLIENT_BUMBLE_RAYGUN, bool isnew) if(sf & BRG_START) { - this.origin_x = ReadCoord(); - this.origin_y = ReadCoord(); - this.origin_z = ReadCoord(); + this.origin = ReadVector(); setorigin(this, this.origin); } if(sf & BRG_END) { - this.bumble_origin_x = ReadCoord(); - this.bumble_origin_y = ReadCoord(); - this.bumble_origin_z = ReadCoord(); + this.bumble_origin = ReadVector(); } return true; }