Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Content.IntegrationTests.Tests.Nutrition;
/// </summary>
public sealed class HungerThirstTest : InteractionTest
{
private readonly EntProtoId _drink = "DrinkLemonadeGlass";
private readonly EntProtoId _drink = "DrinkCoconutWaterGlass"; // ES EDIT - Fuck you!
private readonly EntProtoId _food = "FoodCakeVanillaSlice";
protected override string PlayerPrototype => "MobHuman";

Expand Down
4 changes: 3 additions & 1 deletion Content.Shared/Nutrition/Components/HungerComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ public sealed partial class HungerComponent : Component
/// </summary>
/// <remarks>Any time this is modified, <see cref="HungerSystem.SetAuthoritativeHungerValue"/> should be called.</remarks>
[DataField("baseDecayRate"), ViewVariables(VVAccess.ReadWrite)]
public float BaseDecayRate = 0.01666666666f;
// ES START
public float BaseDecayRate = 1 / 20f;
// ES END

/// <summary>
/// The actual amount at which <see cref="LastAuthoritativeHungerValue"/> decays.
Expand Down
4 changes: 3 additions & 1 deletion Content.Shared/Nutrition/Components/ThirstComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ public sealed partial class ThirstComponent : Component
[ViewVariables(VVAccess.ReadWrite)]
[DataField("baseDecayRate")]
[AutoNetworkedField]
public float BaseDecayRate = 0.1f;
// ES START
public float BaseDecayRate = 0.3f;
// ES END

[ViewVariables(VVAccess.ReadWrite)]
[AutoNetworkedField]
Expand Down
15 changes: 1 addition & 14 deletions Resources/Prototypes/_ES/Catalog/Crates/crates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,18 +132,6 @@
id: MedkitAdvancedFilled
amount: 2

- type: entity
parent: CrateGenericSteel
id: ESCrateRestock
name: vending machine restock crate
description: Contains a box used for restocking vending machines.
suffix: ES
components:
- type: EntityTableContainerFill
containers:
entity_storage:
id: ESVendingMachineRestockGlobal

#Security
- type: entity
parent: CrateSecgear
Expand Down Expand Up @@ -395,7 +383,6 @@
weight: 2
- id: ESGeneralToolsCrate
- id: ESCrateEmergencyFire
- id: ESCrateRestock
- id: ESCrateEmergencyEVA #These four aren't just ESGeneralCratesTable due to the Water tank and advanced tools
- tableId: ESCargoGeneralCratesTable
- tableId: ESCargoMedicalCratesTable
Expand All @@ -418,4 +405,4 @@
- id: ESSpeedLoader357
amount: 2
- id: ESMagazine9mm
amount: 2
amount: 2
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@
- id: ESCrateFoodCooking
- id: ESCrateServiceJanitorialSupplies
- id: ESCrateServiceReplacementLights
- id: ESCrateRestock
weight: 0.25

- type: entityTable
id: ESCargoGeneralCratesTable
Expand All @@ -56,8 +54,6 @@
- id: WaterTankHighCapacity
- id: ESCrateEmergencyEVA
- id: ESAdvancedToolsCrate
- id: ESCrateRestock
weight: 0.25

- type: entity
id: ESSpawnerRandomDistributedCargo
Expand Down
15 changes: 0 additions & 15 deletions Resources/Prototypes/_ES/Entities/Objects/Devices/restock.yml

This file was deleted.

9 changes: 0 additions & 9 deletions Resources/Prototypes/_ES/Lathe/Recipes/cargo.yml

This file was deleted.

2 changes: 0 additions & 2 deletions Resources/Prototypes/_ES/Lathe/packs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,8 @@
- type: latheRecipePack
id: ESCargoStatic
recipes:
- AppraisalTool
- Pickaxe
- ESWeaponKnife
- ESVendingMachineRestockGlobal

# Medical
- type: latheRecipePack
Expand Down
4 changes: 4 additions & 0 deletions Resources/migration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,10 @@ CryogenicSleepUnitSpawnerLateJoin: null

# 2026-2-10
AnomalyLocator: ESAnomalyProbe

# 2026-2-23
ESVendingMachineRestockGlobal: null
ESCrateRestock: null
# ES END

# 2023-07-03
Expand Down
Loading