Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</Id>
<DisplayName>Standard Blink Drive</DisplayName>
<Icon>Textures\GUI\Icons\BlinkDriveIcon.dds</Icon>
<Description>1Km teleport. Holds 3 charges. Each charge takes 100MW and 60s to recharge.</Description>
<Description>1Km teleport. Holds 3 charges. Each charge takes 300MW and 60s to recharge.</Description>
<CubeSize>Large</CubeSize>
<BlockTopology>TriangleMesh</BlockTopology>
<Size x="3" y="3" z="3" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class BlinkDrive : MyGameLogicComponent, IMyEventProxy
private const int RechargeTimeSeconds = 60;
private const int MaxCharges = 3;

private float GetPowerDraw => JumpTimerSync > 0 ? 100 : 0.25f;
private float GetPowerDraw => JumpTimerSync > 0 ? 300 : 0.25f;
private bool CanJump => Block.IsWorking && Block.IsFunctional && MaxCharges > 0;

static bool controlsCreated = false;
Expand Down