roofs update
This commit is contained in:
@@ -11,7 +11,7 @@ public sealed partial class RoofComponent : Component
|
||||
public const int ChunkSize = 8;
|
||||
|
||||
[DataField, AutoNetworkedField]
|
||||
public Color Color = Color.Black;
|
||||
public Color Color = new (80, 80, 80); //CP14 Black color replaced on Dark gray
|
||||
|
||||
/// <summary>
|
||||
/// Chunk origin and bitmask of value in chunk.
|
||||
|
||||
@@ -67,7 +67,7 @@ public sealed class CP14SharpeningSystem : EntitySystem
|
||||
if (!args.CanReach || args.Target == null || !TryComp<CP14SharpenedComponent>(args.Target, out var sharpened))
|
||||
return;
|
||||
|
||||
if (TryComp<UseDelayComponent>(stone, out var useDelay) && _useDelay.IsDelayed( new Entity<UseDelayComponent>(stone, useDelay)))
|
||||
if (TryComp<UseDelayComponent>(stone, out var useDelay) && _useDelay.IsDelayed((stone, useDelay)))
|
||||
return;
|
||||
|
||||
SharpThing(stone, args.Target.Value, sharpened, args.User);
|
||||
|
||||
@@ -12,7 +12,6 @@
|
||||
sprite: /Textures/_CP14/Structures/Dungeon/demiplan_rift_core.rsi
|
||||
layers:
|
||||
- state: core
|
||||
shader: unshaded
|
||||
- type: GuideHelp
|
||||
guides:
|
||||
- CP14_RU_Demiplanes
|
||||
@@ -45,7 +44,6 @@
|
||||
- type: Sprite
|
||||
layers:
|
||||
- state: core
|
||||
shader: unshaded
|
||||
color: red
|
||||
- type: CP14DemiplaneGeneratorData
|
||||
tiersContent:
|
||||
|
||||
@@ -25,6 +25,7 @@
|
||||
- type: IconSmooth
|
||||
key: CP14roof
|
||||
base: roof
|
||||
- type: IsRoof
|
||||
|
||||
- type: entity
|
||||
parent:
|
||||
|
||||
Reference in New Issue
Block a user