]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Net_LinkEntity: check against empty strings too
authorTimePath <andrew.hardaker1995@gmail.com>
Thu, 15 Oct 2015 06:06:53 +0000 (17:06 +1100)
committerTimePath <andrew.hardaker1995@gmail.com>
Thu, 15 Oct 2015 06:07:15 +0000 (17:07 +1100)
qcsrc/lib/net.qh

index 04faffc4a07ef4bc02178706186af916b735ed7e..834de760f503e8a2739b3b3bcda3b448bc811566 100644 (file)
@@ -11,9 +11,9 @@ bool SendEntity_self(entity to, int sendflags) { return self.SendEntity3(self, t
 
 void Net_LinkEntity(entity e, bool docull, float dt, bool(entity this, entity to, int sendflags) sendfunc)
 {
-    if (!e.classname) e.classname = "net_linked";
+    if (e.classname == "") e.classname = "net_linked";
 
-    if (!e.model || !self.modelindex) {
+    if (e.model == "" || self.modelindex == 0) {
         vector mi = e.mins;
         vector ma = e.maxs;
         _setmodel(e, "null");