From 8d10336c6376c1da9a41edc3317bafde7bd679bb Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sun, 3 Nov 2019 11:00:47 +0100 Subject: [PATCH] ray:: disabled in texture --- raycaster.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/raycaster.cpp b/raycaster.cpp index 13d7780e..2061a761 100644 --- a/raycaster.cpp +++ b/raycaster.cpp @@ -68,6 +68,7 @@ EX bool available() { /** do we want to use the raycaster? */ EX bool requested() { if(!want_use) return false; + if(texture::config.tstate == texture::tsActive) return false; if(!available()) return false; if(want_use == 2) return true; return racing::on || quotient;