-
Notifications
You must be signed in to change notification settings - Fork 279
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5f8347f
commit 75170b8
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -766,10 +766,29 @@ RESOURCE_DEFINITION | |
{ | ||
!amountUnit = DEL | ||
} | ||
//Set drain Isp very low to prevent exploits? | ||
@RESOURCE_DEFINITION[*]:LAST[RealismOverhaul] | ||
{ | ||
%RESOURCE_DRAIN_DEFINITION | ||
{ | ||
%drainForceISP = 0.1 | ||
} | ||
} | ||
//Do not drain nuclear fuels | ||
@RESOURCE_DEFINITION[DepletedUranium|EnrichedUranium|UraniumNitride|DepletedFuel]:LAST[RealismOverhaul] | ||
{ | ||
@RESOURCE_DRAIN_DEFINITION | ||
{ | ||
%isDrainable = false | ||
%showDrainFX = false | ||
} | ||
} | ||
//Do not drain hidden resources, they are probably hidden for a reason | ||
@RESOURCE_DEFINITION[*]:HAS[#isVisible[?alse]]:LAST[RealismOverhaul] | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
Capkirk123
Author
Member
|
||
{ | ||
@RESOURCE_DRAIN_DEFINITION | ||
{ | ||
%isDrainable = false | ||
%showDrainFX = false | ||
} | ||
} |
@Capkirk123 Just popping in because I'm curious, is this supposed to be
instead of
No idea if this is a typo or intentional as I don't know any of these systems