Skip to content

Commit

Permalink
fix PotencyDivisors capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
sleepyyapril committed Dec 16, 2024
1 parent e877ccd commit fa96dd4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Content.Server/Botany/SeedPrototype.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public partial struct SeedChemQuantity
/// When chemicals are added to produce, the potency of the seed is divided with this value. Final chemical amount is the result plus the `Min` value.
/// Example: PotencyDivisor of 20 with seed potency of 55 results in 2.75, 55/20 = 2.75. If minimum is 1 then final result will be 3.75 of that chemical, 55/20+1 = 3.75.
/// </summary>
[DataField] public int PotencyDivisor;
[DataField("PotencyDivisor")] public int PotencyDivisor;

/// <summary>
/// Inherent chemical is one that is NOT result of mutation or crossbreeding. These chemicals are removed if species mutation is executed.
Expand Down
4 changes: 2 additions & 2 deletions Resources/Maps/Salvage/vegan-meatball.yml
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ entities:
chemicals:
THC:
Inherent: True
potencyDivisor: 10
PotencyDivisor: 10
Max: 10
Min: 1
productPrototypes:
Expand Down Expand Up @@ -578,7 +578,7 @@ entities:
chemicals:
Stellibinin:
Inherent: True
potencyDivisor: 4
PotencyDivisor: 4
Max: 25
Min: 1
productPrototypes:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
map: [ "enum.AmmoVisualLayers.Base" ]
- type: CartridgeAmmo
proto: PelletShotgunSoulbreaker
count: 1
- type: ChemicalAmmo
- type: SolutionContainerManager
solutions:
Expand Down
4 changes: 2 additions & 2 deletions Resources/Prototypes/Nyanotrasen/Hydroponics/seeds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
Nutriment:
Min: 1
Max: 10
potencyDivisor: 10
PotencyDivisor: 10
DemonsBlood:
Min: 1
Max: 4
potencyDivisor: 25
PotencyDivisor: 25
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,6 @@
sprites:
- sprite: Objects/Specific/Hydroponics/extradimensional_orange.rsi
state: produce
scale: 0.5,0.5
tags:
- Fruit

Expand All @@ -593,7 +592,6 @@
sprites:
- sprite: Objects/Specific/Hydroponics/extradimensional_orange.rsi
state: produce
scale: 0.5,0.5
tags:
- Fruit

Expand Down

0 comments on commit fa96dd4

Please sign in to comment.