Skip to content

Commit 632c467

Browse files
Change Las Venturas Strip trees
1 parent d50afe0 commit 632c467

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/OpenRP.Framework/Features/BiomeGenerator/Services/Generators/Biomes/LasVenturasStripBiome.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public LasVenturasStripBiome(IBiomeObjectFactory factory)
2424
_factory = factory;
2525
_weightedRandom = new WeightedRandom<string>(new Dictionary<string, int>
2626
{
27-
{ "LosSantosTree", 50 },
27+
{ "LasVenturasStripTree", 50 },
2828
{ "Nothing", 950 }
2929
});
3030
_biomeOutputColor = GetBiomeOutputColor();

src/OpenRP.Framework/Features/BiomeGenerator/Services/Generators/Objects/LasVenturasStripTreeGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class LasVenturasStripTreeGenerator : IBiomeObjectGenerator
1414

1515
public BiomeObject Generate(Vector2 virtualPosition, Vector3 gamePosition, Vector3 gameRotation, Vector3 defaultRotation, Vector3 maxAngleRotation, Color outputColor)
1616
{
17-
int[] obj_arr_trees = { 620, 621, 712, 645, 710 };
17+
int[] obj_arr_trees = { 3505, 3506, 3507, 3508, 3509, 3510, 3511, 3512 };
1818

1919
int modelId = obj_arr_trees[Random.Shared.Next(obj_arr_trees.Length)];
2020

0 commit comments

Comments
 (0)