From fbe0df98149e6970f020ba49762380b82933e189 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 28 Jul 2020 16:45:04 +0200 Subject: [PATCH] ray:: in berger sphere can be disabled --- raycaster.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/raycaster.cpp b/raycaster.cpp index 5deaa17b..1914001a 100644 --- a/raycaster.cpp +++ b/raycaster.cpp @@ -87,8 +87,8 @@ EX bool available() { /** do we want to use the raycaster? */ EX bool requested() { if(cgflags & qRAYONLY) return true; - if(stretch::in() && sphere) return true; if(!want_use) return false; + if(stretch::in() && sphere) return true; #if CAP_TEXTURE if(texture::config.tstate == texture::tsActive) return false; #endif