From 4c5de2f57c7a444a2beb1540eb9d129e61fc4671 Mon Sep 17 00:00:00 2001 From: White Date: Thu, 6 Feb 2014 09:40:52 +1030 Subject: [PATCH] Adds a few missing blocks to creep checks Hallowed vines Pink ice blocks Red ice blocks From brief research, this should be all the missing biome spreading blocks --- TShockAPI/TShock.cs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/TShockAPI/TShock.cs b/TShockAPI/TShock.cs index b453c4f0..9b4c927a 100755 --- a/TShockAPI/TShock.cs +++ b/TShockAPI/TShock.cs @@ -851,8 +851,9 @@ namespace TShockAPI if (args.Handled) return; - if (!Config.AllowCrimsonCreep && (args.Type == 0 || args.Type == 199 || args.Type == 203 || args.Type == 234)) - { + if (!Config.AllowCrimsonCreep && (args.Type == 0 || args.Type == 199 || args.Type == 200 || args.Type == 203 + || args.Type == 234)) + { args.Handled = true; return; } @@ -864,7 +865,8 @@ namespace TShockAPI return; } - if (!Config.AllowHallowCreep && (args.Type == 109 || args.Type == 117 || args.Type == 116)) + if (!Config.AllowHallowCreep && (args.Type == 109 || args.Type == 117 || args.Type == 116 || args.Type == 115 + || args.Type == 164)) { args.Handled = true; }