From 0f3f9158c3d5aa38b5528ebe75f8e3b83709614a Mon Sep 17 00:00:00 2001 From: pokemonpasta <38894447+pokemonpasta@users.noreply.github.com> Date: Wed, 29 Jul 2026 17:07:09 +0100 Subject: [PATCH 1/2] Double up mandrill blocks (Fixes #50) --- scripts/vscripts/tf2ware_ultimate/bossgames/mandrill.nut | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scripts/vscripts/tf2ware_ultimate/bossgames/mandrill.nut b/scripts/vscripts/tf2ware_ultimate/bossgames/mandrill.nut index c13a7595..02793676 100644 --- a/scripts/vscripts/tf2ware_ultimate/bossgames/mandrill.nut +++ b/scripts/vscripts/tf2ware_ultimate/bossgames/mandrill.nut @@ -58,6 +58,14 @@ function OnStart() disableshadows = true disablereceiveshadows = true }) + + Ware_SpawnEntity("func_brush", + { + origin = block_pos + Vector(0, 0, 208) // these blocks arent square..... :( + model = block_model + disableshadows = true + disablereceiveshadows = true + }) } } //print("\n") From 0b5061289a1137fd31fb53fbe9d77e068f0455fc Mon Sep 17 00:00:00 2001 From: pokemonpasta <38894447+pokemonpasta@users.noreply.github.com> Date: Wed, 29 Jul 2026 17:11:11 +0100 Subject: [PATCH 2/2] fix indenting --- .../vscripts/tf2ware_ultimate/bossgames/mandrill.nut | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/vscripts/tf2ware_ultimate/bossgames/mandrill.nut b/scripts/vscripts/tf2ware_ultimate/bossgames/mandrill.nut index 02793676..017c4885 100644 --- a/scripts/vscripts/tf2ware_ultimate/bossgames/mandrill.nut +++ b/scripts/vscripts/tf2ware_ultimate/bossgames/mandrill.nut @@ -60,12 +60,12 @@ function OnStart() }) Ware_SpawnEntity("func_brush", - { - origin = block_pos + Vector(0, 0, 208) // these blocks arent square..... :( - model = block_model - disableshadows = true - disablereceiveshadows = true - }) + { + origin = block_pos + Vector(0, 0, 208) // these blocks arent square..... :( + model = block_model + disableshadows = true + disablereceiveshadows = true + }) } } //print("\n")