shithub: sce

Download patch

ref: 651a9debe5f055dfc10b59197896c43398d46560
parent: 3a7a70853c38b79291760a4a0b923d1964139c90
author: qwx <qwx@sciops.net>
date: Thu Dec 2 17:45:19 EST 2021

com: don't check mobj coordinates

these will get out of phase when waypoints are used

--- a/com.c
+++ b/com.c
@@ -65,10 +65,6 @@
 
 	if((mo = derefmobj(r->idx, r->uuid)) == nil)
 		return nil;
-	if(!eqpt(mo->Point, r->Point)){
-		werrstr("phase error: req mobj at %P, found %M", r->Point, mo);
-		return nil;
-	}
 	return mo;
 }