]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Merge branch 'master' into Mario/q3compat_sanity
authorMario <mario.mario@y7mail.com>
Sun, 18 Oct 2020 03:30:19 +0000 (13:30 +1000)
committerMario <mario.mario@y7mail.com>
Sun, 18 Oct 2020 03:30:19 +0000 (13:30 +1000)
1  2 
qcsrc/client/mapvoting.qc
qcsrc/common/mapinfo.qc
qcsrc/menu/draw.qc
qcsrc/server/campaign.qc
qcsrc/server/command/sv_cmd.qc
qcsrc/server/mapvoting.qc
qcsrc/server/world.qc
qcsrc/server/world.qh

Simple merge
index f8c960a4a9474b012fd7a4092263094935dbbfc2,1b3fa8faf7d34a46925a337174447423e4ecd220..384b3a5558b21ec3e3a5cac7a3037903c8a2611e
@@@ -1,16 -1,13 +1,16 @@@
  #include "mapinfo.qh"
  #if defined(CSQC)
-     #include "util.qh"
-     #include <common/weapons/_all.qh>
+       #include <common/util.qh>
+       #include <common/weapons/_all.qh>
  #elif defined(MENUQC)
  #elif defined(SVQC)
-     #include "util.qh"
-     #include <common/monsters/_mod.qh>
+       #include <common/util.qh>
+       #include <common/monsters/_mod.qh>
  #endif
  
 +bool autocvar_g_mapinfo_arena_compat = true;
 +bool autocvar_g_mapinfo_arena_generate = false;
 +
  #ifdef MENUQC
  #define WARN_COND false
  #else
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
index 2894299d619beee64fd0dbfa9b9510c4dacea443,7448c0847ed3dc710ff34691e5612c5abe34cc75..e351624701a7c6370b0dd6ed49c838b93e83b332
@@@ -61,9 -116,12 +116,16 @@@ float MoveToRandomMapLocation(entity e
  void CheckRules_World();
  float RedirectionThink();
  
 +// quake 3 music compatibility
 +.string music;
 +.string noise;
 +
+ void readplayerstartcvars();
+ void readlevelcvars();
+ .vector dropped_origin;
+ void droptofloor(entity this);
  IntrusiveList g_moveables;
  STATIC_INIT(g_moveables) { g_moveables = IL_NEW(); }