Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
I only used share_inertia_tensor because it's true whereas I couldn't guarantee that with the hp_extend. I'm sure adding a new variable near line 380 equal to true would have been the way to go but this is simpler for somebody to recreate.
My edit to lines 957 to 971:
if (vp_count > 0)
{
if (share_inertia_tensor)
{
rot_speed = (float)(rot_speed / ((v_stage * vp_step_length) + excess_meters));
}
else
{
rot_speed = (float)(rot_speed / (excess_meters + (vp_stage_count - v_stage) * vp_step_length));
}
}
else
{
rot_speed = (float)(rot_speed / excess_meters);
}
My edit to lines 1100 to 1115:
if (vp_count > 0)
{
if (share_inertia_tensor)
{
rot_speed = (float)(rot_speed / (excess_meters + v_stage * vp_step_length));
}
else
{
rot_speed = (float)(rot_speed / (excess_meters + (vp_stage_count - v_stage) * vp_step_length));
}
}
else
{
rot_speed = (float)(rot_speed / excess_meters);
}
rotor.Enabled = true;
Remove (hp_count * piston_length) from lines 961, 965, 1104, 1108. So that it doesn't think the arm is way longer than it really is when it does it's velocity calculations for the drill head.