]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
fixed a compile error, all the hooks work now, need to find a way to
authordrjaska <drjaska83@gmail.com>
Sat, 6 Mar 2021 01:37:39 +0000 (03:37 +0200)
committerdrjaska <drjaska83@gmail.com>
Sat, 6 Mar 2021 01:37:39 +0000 (03:37 +0200)
disable self damage and hp&armor rot. need to find the file to write
default values for g_mayhem_ regeneration and weaponarena. need to add
a new icon for mayhem. need to look into mapinfo regeneration.

qcsrc/common/gamemodes/gamemode/mayhem/sv_mayhem.qc

index 7b443af5fa0ddc683ba8adc43a50018a0dfdba5b..5fbe7a0965f771ba7b1cef90fff1f2e60c07b7ba 100644 (file)
@@ -1,6 +1,7 @@
 #include "sv_mayhem.qh"
 
-bool autocvar_g_mayhem_regenerate;
+float autocvar_g_mayhem_regenerate;
+string autocvar_g_mayhem_weaponarena;
 
 MUTATOR_HOOKFUNCTION(mayhem, Scores_CountFragsRemaining)
 {
@@ -49,4 +50,6 @@ MUTATOR_HOOKFUNCTION(mayhem, FilterItem)
 
        if (autocvar_g_pickup_items <= 0)
                return true;
+       else 
+               return false;
 }
\ No newline at end of file