Various House Raffle fixes - http://jira.runuo.com/browse/RUNUO-94
Pet friends should have access to pack animals' backpacks - http://jira.runuo.com/browse/RUNUO-95 Animal Lore wrong GM skill perk - http://jira.runuo.com/browse/RUNUO-92
This commit is contained in:
parent
216824a9b4
commit
44a4693fda
8 changed files with 193 additions and 21 deletions
|
|
@ -21,6 +21,7 @@ namespace Server.Multis
|
|||
BadRegionHidden,
|
||||
BadRegionTemp,
|
||||
InvalidCastleKeep,
|
||||
BadRegionRaffle
|
||||
}
|
||||
|
||||
public class HousePlacement
|
||||
|
|
@ -114,6 +115,9 @@ namespace Server.Multis
|
|||
if ( reg.IsPartOf( typeof( TreasureRegion ) ) )
|
||||
return HousePlacementResult.BadRegionHidden;
|
||||
|
||||
if ( reg.IsPartOf( typeof( HouseRaffleRegion ) ) )
|
||||
return HousePlacementResult.BadRegionRaffle;
|
||||
|
||||
return HousePlacementResult.BadRegion;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue