#W# Change: Felucca is now Veridia
This commit is contained in:
parent
d7fb1b1c03
commit
7cf3e68b37
87 changed files with 1279 additions and 1279 deletions
|
|
@ -81,7 +81,7 @@ namespace Server.Engines.Harvest
|
|||
RangedTiles = true,
|
||||
MaxRange = 4,
|
||||
ConsumedPerHarvest = 1,
|
||||
ConsumedPerFeluccaHarvest = 1,
|
||||
ConsumedPerVeridiaHarvest = 1,
|
||||
EffectActions = new[] { 12 },
|
||||
EffectSounds = Array.Empty<int>(),
|
||||
EffectCounts = new[] { 1 },
|
||||
|
|
@ -200,7 +200,7 @@ namespace Server.Engines.Harvest
|
|||
{
|
||||
foreach (var sos in pack.FindItemsByType<SOS>())
|
||||
{
|
||||
if ((from.Map == Map.Felucca || from.Map == Map.Trammel) && from.InRange(sos.TargetLocation, 60))
|
||||
if ((from.Map == Map.Veridia || from.Map == Map.Trammel) && from.InRange(sos.TargetLocation, 60))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
|
@ -225,12 +225,12 @@ namespace Server.Engines.Harvest
|
|||
level = 1;
|
||||
}
|
||||
|
||||
return new TreasureMap(level, from.Map == Map.Felucca ? Map.Felucca : Map.Trammel);
|
||||
return new TreasureMap(level, from.Map == Map.Veridia ? Map.Veridia : Map.Trammel);
|
||||
}
|
||||
|
||||
if (type == typeof(MessageInABottle))
|
||||
{
|
||||
return new MessageInABottle(from.Map == Map.Felucca ? Map.Felucca : Map.Trammel);
|
||||
return new MessageInABottle(from.Map == Map.Veridia ? Map.Veridia : Map.Trammel);
|
||||
}
|
||||
|
||||
var pack = from.Backpack;
|
||||
|
|
@ -240,7 +240,7 @@ namespace Server.Engines.Harvest
|
|||
// We don't have to queue since we are returning on the first SOS.
|
||||
foreach (var sos in pack.FindItemsByType<SOS>())
|
||||
{
|
||||
if ((from.Map == Map.Felucca || from.Map == Map.Trammel) && from.InRange(sos.TargetLocation, 60))
|
||||
if ((from.Map == Map.Veridia || from.Map == Map.Trammel) && from.InRange(sos.TargetLocation, 60))
|
||||
{
|
||||
Item preLoot = null;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue