Фиксы апстрима 2 (#665)

* increase radiation effect cost for artifacts

* less points for singulo and tesla spawn effect

* fix playtime

* fix slime storage

* fix wrong arms position
This commit is contained in:
ThereDrD
2024-08-25 10:37:38 +03:00
committed by GitHub
parent 1747c7bcec
commit fa7b02fa33
3 changed files with 5 additions and 4 deletions

View File

@@ -21,7 +21,7 @@ public sealed class UserDbDataManager : IPostInjectInit
{ {
[Dependency] private readonly IServerPreferencesManager _prefs = default!; [Dependency] private readonly IServerPreferencesManager _prefs = default!;
[Dependency] private readonly ILogManager _logManager = default!; [Dependency] private readonly ILogManager _logManager = default!;
[Dependency] private readonly PlayTimeTrackingManager _playTimeTracking = default!; [Dependency] private readonly IPlayTimeTrackingManager _playTimeTracking = default!;
private readonly Dictionary<NetUserId, UserData> _users = new(); private readonly Dictionary<NetUserId, UserData> _users = new();

View File

@@ -17,6 +17,7 @@
grid: grid:
- 0,0,1,2 - 0,0,1,2
maxItemSize: Large maxItemSize: Large
clickInsert: false
storageInsertSound: storageInsertSound:
path: /Audio/Voice/Slime/slime_squish.ogg path: /Audio/Voice/Slime/slime_squish.ogg
- type: ContainerContainer - type: ContainerContainer

View File

@@ -253,7 +253,7 @@
- type: artifactEffect - type: artifactEffect
id: EffectRadiate id: EffectRadiate
targetDepth: 1 targetDepth: 4
effectHint: artifact-effect-hint-release effectHint: artifact-effect-hint-release
components: components:
- type: RadiationSource - type: RadiationSource
@@ -713,7 +713,7 @@
- type: artifactEffect - type: artifactEffect
id: EffectSingulo id: EffectSingulo
targetDepth: 10 targetDepth: 8
effectHint: artifact-effect-hint-destruction effectHint: artifact-effect-hint-destruction
components: components:
- type: SpawnArtifact - type: SpawnArtifact
@@ -723,7 +723,7 @@
- type: artifactEffect - type: artifactEffect
id: EffectTesla id: EffectTesla
targetDepth: 10 targetDepth: 8
effectHint: artifact-effect-hint-destruction effectHint: artifact-effect-hint-destruction
components: components:
- type: SpawnArtifact - type: SpawnArtifact