From dd2d35a69e4739e53e729f08ca6dcd4a98addd43 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Sat, 2 Apr 2016 16:48:09 +1100 Subject: [PATCH] Super quick fix for last commit borking portals/messageblocks at feet. --- Player/Player.Handlers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Player/Player.Handlers.cs b/Player/Player.Handlers.cs index 70fe0b088..725aafe2e 100644 --- a/Player/Player.Handlers.cs +++ b/Player/Player.Handlers.cs @@ -877,7 +877,7 @@ return; Block.HandleWalkthrough handler = Block.walkthroughHandlers[b]; if (handler != null && handler(this, b, x, y, z)) return; handler = Block.walkthroughHandlers[b1]; - if (handler != null && handler(this, b, x, y, z)) return; + if (handler != null && handler(this, b, x, (ushort)(y - 1), z)) return; } } if ( ( b == Block.tntexplosion || b1 == Block.tntexplosion ) && PlayingTntWars ) { }