mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
Fix RHIB2Turret bad vehicle type crew error
https://epochmod.com/forum/topic/44700-bad-vehicle-type/
This commit is contained in:
@@ -82,6 +82,7 @@
|
||||
[FIXED] A rare error in keyboard.sqf for certain combination binds.
|
||||
[FIXED] Floating loot positions in hotel (Land_HouseB_Tenement)
|
||||
[FIXED] Updates to humanity and player stats after a skin change not always saving in hive (server_getDiff)
|
||||
[FIXED] Bad vehicle type crew error for RHIB2Turret on A2OA main menu intro scene
|
||||
|
||||
[NOTE] Fixes below were included in hotfix 1.0.6.1A (March 10th 2017) and are now in the default files.
|
||||
[FIXED] Fixed food and drink going down 10x faster from melee and other "working" actions.
|
||||
|
||||
@@ -267,21 +267,20 @@ class Boat : Ship
|
||||
};
|
||||
class RHIB: Boat
|
||||
{
|
||||
displayName = "RHIB";
|
||||
crew = "";
|
||||
displayName = $STR_DN_RHIB;
|
||||
typicalCargo[] = {};
|
||||
class TransportMagazines {};
|
||||
class TransportWeapons {};
|
||||
};
|
||||
class RHIB2Turret: RHIB
|
||||
{
|
||||
displayName = "RHIB (Mk19)";
|
||||
displayName = $STR_DN_RHIB2;
|
||||
};
|
||||
|
||||
class RHIB_DZ : Boat
|
||||
{
|
||||
scope = public;
|
||||
displayName = "RHIB";
|
||||
displayName = $STR_DN_RHIB;
|
||||
vehicleClass = "Ship";
|
||||
accuracy = 0.5;
|
||||
crew = "";
|
||||
@@ -498,7 +497,7 @@ class RHIB_DZ : Boat
|
||||
"100Rnd_127x99_M2",
|
||||
"100Rnd_127x99_M2"
|
||||
};
|
||||
gunnerName = "front gunner";
|
||||
gunnerName = $STR_POSITION_FRONTGUNNER;
|
||||
gunnerOpticsModel = "\ca\weapons\optika_empty";
|
||||
gunnerForceOptics = 0;
|
||||
startEngine = 0;
|
||||
@@ -533,7 +532,7 @@ class RHIB_DZ : Boat
|
||||
};
|
||||
class Library
|
||||
{
|
||||
libTextDesc = "The Naval Special Warfare Rigid Hull Inflatable Boat is a fast, high-buoyancy all weather boat designed to transport a fully equipped team of eight-men and three crew members. It is also fully transportable by C-130 Hercules.";
|
||||
libTextDesc = $STR_LIB_RHIB;
|
||||
};
|
||||
extCameraPosition[] = {
|
||||
0,
|
||||
|
||||
Reference in New Issue
Block a user