Bouncer OnTileEdit remove personal storage SSC check.
We are covering/tracking these features properly now in SSC, thus they are unnedded.
This commit is contained in:
parent
f5e1510f58
commit
c03ac50f81
2 changed files with 1 additions and 17 deletions
|
|
@ -365,14 +365,6 @@ namespace TShockAPI
|
|||
args.Handled = true;
|
||||
return;
|
||||
}
|
||||
if (action == EditAction.PlaceTile && personalStorageTileIDs.Contains(editData) && Main.ServerSideCharacter)
|
||||
{
|
||||
TShock.Log.ConsoleDebug("Bouncer / OnTileEdit rejected from (sscprotect) {0} {1} {2}", args.Player.Name, action, editData);
|
||||
args.Player.SendErrorMessage("You cannot place this tile because server side characters are enabled.");
|
||||
args.Player.SendTileSquare(tileX, tileY, 3);
|
||||
args.Handled = true;
|
||||
return;
|
||||
}
|
||||
if (action == EditAction.PlaceTile && (editData == TileID.Containers || editData == TileID.Containers2))
|
||||
{
|
||||
if (TShock.Utils.HasWorldReachedMaxChests())
|
||||
|
|
@ -2135,14 +2127,6 @@ namespace TShockAPI
|
|||
TileID.Campfire
|
||||
};
|
||||
|
||||
private static List<int> personalStorageTileIDs = new List<int>()
|
||||
{
|
||||
TileID.PiggyBank,
|
||||
TileID.Safes,
|
||||
TileID.DefendersForge,
|
||||
TileID.VoidVault
|
||||
};
|
||||
|
||||
/// <summary>
|
||||
/// These projectiles have been added or modified with Terraria 1.4.
|
||||
/// They come from normal items, but to have the directional functionality, they must be projectiles.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue