X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Flib%2Foo.qh;h=a2cef664bad3b72f9936ab371b12087c1e362027;hb=4db2ff8fdd5f9db3f74362e9fb6ce67e16fa65a4;hp=70e17e6cf0b2ddc9146c3bbf52fec8d0d88f078b;hpb=7b1c7d6a2f8f423b2642a4d2f5f07be9cd5890d0;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/lib/oo.qh b/qcsrc/lib/oo.qh index 70e17e6cf..a2cef664b 100644 --- a/qcsrc/lib/oo.qh +++ b/qcsrc/lib/oo.qh @@ -39,12 +39,6 @@ entity __spawn(string _classname, string _sourceLoc, bool pure) this.sourceLoc = _sourceLoc; if (pure) { make_pure(this); - #ifdef CSQC - setorigin(this, (world.mins + world.maxs) * 0.5); - #endif - #ifdef SVQC - setorigin(this, (world.mins + world.maxs) * 0.5); - #endif } return this; }