-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from lbmaian/master
Further Doors Expanded stability and rebalance
- Loading branch information
Showing
14 changed files
with
129 additions
and
74 deletions.
There are no files selected for viewing
Binary file not shown.
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
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 |
---|---|---|
@@ -1,17 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<Patch> | ||
|
||
<!-- | ||
Although doors, including our custom doors, aren't uninstallable (minifiable) by default, | ||
we're defining masses for custom doors, so we might as well define a default for all doors if another mod hasn't already defined one yet. | ||
This way, if another mod like MinifyEverything does make doors uninstallable, they'll have a reasonable mass. | ||
--> | ||
<Operation Class="PatchOperationAdd"> | ||
<success>Always</success> | ||
<xpath>/Defs/ThingDef[@Name="DoorBase"]/statBases</xpath> | ||
<value> | ||
<Mass>20</Mass> | ||
</value> | ||
</Operation> | ||
|
||
<!-- TODO: Remove this file --> | ||
<!-- Empty file for temporary backwards compatibility (in case users are simply copying over files over old versions) --> | ||
</Patch> |
Binary file not shown.
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
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 |
---|---|---|
@@ -1,17 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<Patch> | ||
|
||
<!-- | ||
Although doors, including our custom doors, aren't uninstallable (minifiable) by default, | ||
we're defining masses for custom doors, so we might as well define a default for all doors if another mod hasn't already defined one yet. | ||
This way, if another mod like MinifyEverything does make doors uninstallable, they'll have a reasonable mass. | ||
--> | ||
<Operation Class="PatchOperationAdd"> | ||
<success>Always</success> | ||
<xpath>/Defs/ThingDef[@Name="DoorBase"]/statBases</xpath> | ||
<value> | ||
<Mass>20</Mass> | ||
</value> | ||
</Operation> | ||
|
||
<!-- TODO: Remove this file --> | ||
<!-- Empty file for temporary backwards compatibility (in case users are simply copying over files over old versions) --> | ||
</Patch> |
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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using Verse; | ||
|
||
namespace DoorsExpanded | ||
{ | ||
public class DoorsExpandedMod : Mod | ||
{ | ||
public DoorsExpandedMod(ModContentPack content) : base(content) | ||
{ | ||
} | ||
|
||
// TODO: Mod options | ||
} | ||
} |
Oops, something went wrong.