Skip to content
Open
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
2 changes: 2 additions & 0 deletions Languages/English/Keyed/Messages.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@
<CE_Message_CounterShelling>Artillery fire incoming from {0} ({1}).</CE_Message_CounterShelling>
<CE_Message_CounterRaid>A group from {0} is planning to raid {1} at {2} soon in retaliation for recent events.</CE_Message_CounterRaid>

<CE_Message_ArtilleryBadLayer>Cannot fire on different layer tile with this piece of artillery.</CE_Message_ArtilleryBadLayer>

</LanguageData>
2 changes: 1 addition & 1 deletion Source/BetterTurretsCompat/BetterTurretsCompat.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Krafs.Rimworld.Ref" Version="1.6.4543" GeneratePathProperty="true" />
<PackageReference Include="Krafs.Rimworld.Ref" Version="1.6.4633" GeneratePathProperty="true" />
<PackageReference Include="Lib.Harmony" Version="2.3.6" ExcludeAssets="runtime" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion Source/CombatExtended/CombatExtended.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Krafs.Rimworld.Ref" Version="1.6.4543" GeneratePathProperty="true" />
<PackageReference Include="Krafs.Rimworld.Ref" Version="1.6.4633" GeneratePathProperty="true" />
<PackageReference Include="Lib.Harmony" Version="2.3.6" ExcludeAssets="runtime" />
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
using Verse;

namespace CombatExtended;

public class CompOrbitalTurret : ThingComp
{
public CompProperties_OrbitalTurret Props => (CompProperties_OrbitalTurret)props;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

using Verse;

namespace CombatExtended;

public class CompProperties_OrbitalTurret: CompProperties
{
public float interLayerPrecisionBonusFactor = 1;
public bool isMarkMandatory = false;

public CompProperties_OrbitalTurret()
{
compClass = typeof(CompOrbitalTurret);
}
}
Loading
Loading