From 2de27d5aa9b83b1a77df686f908dbd920eee9135 Mon Sep 17 00:00:00 2001
From: Quaternions <krakow20@gmail.com>
Date: Tue, 11 Mar 2025 18:37:35 -0700
Subject: [PATCH] wrong the whole time

---
 lib/bsp_loader/src/bsp.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bsp_loader/src/bsp.rs b/lib/bsp_loader/src/bsp.rs
index ca65f5a..335015b 100644
--- a/lib/bsp_loader/src/bsp.rs
+++ b/lib/bsp_loader/src/bsp.rs
@@ -235,7 +235,7 @@ pub fn convert<'a>(
 	let mut teleport_destinations=HashMap::new();
 
 	const WHITE:vbsp::Color=vbsp::Color{r:255,g:255,b:255};
-	const ENTITY_ATTRIBUTE:attr::CollisionAttributesId=ATTRIBUTE_DECORATION;
+	const ENTITY_ATTRIBUTE:attr::CollisionAttributesId=ATTRIBUTE_CONTACT_DEFAULT;
 	const ENTITY_TRIGGER_ATTRIBUTE:attr::CollisionAttributesId=ATTRIBUTE_INTERSECT_DEFAULT;
 	for raw_ent in &bsp.entities{
 		let debug_info=match model::EntityInfo::new(raw_ent.properties()){