]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Patch up some gametype descriptions
authorotta8634 <k9wolf@pm.me>
Tue, 7 Jan 2025 08:08:13 +0000 (16:08 +0800)
committerotta8634 <k9wolf@pm.me>
Tue, 7 Jan 2025 08:08:13 +0000 (16:08 +0800)
Fix typo and simplify "damage triggers" -> "hazards".

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

index dcbc05673b8764be7ee35468fef857b1bbbb5c40..d5d6545778106f248b94e4222ce0dce1722bbb60 100644 (file)
@@ -5,7 +5,7 @@ METHOD(Assault, describe, string(Assault this))
 {
     TC(Assault, this);
     return sprintf(_("%s is a team-based gamemode involving an attacking and a defending team\n\n"
-        "The attacking deam destroys objects placed on the map, which opens up new doors or pathways to more objects, until a main object (the enemy power core) is reached. "
+        "The attacking team destroys objects placed on the map, which opens up new doors or pathways to more objects, until a main object (the enemy power core) is reached. "
         "The attacking team wins the round if they manage to destroy the power core before time runs out, and then teams switch roles in the next round\n\n"
         "The defending team has to defend the objects, winning the round if they successfully prevent the attacking team from destroying the power core\n\n"
         "A team will win the match overall once they win at least one round where they attacked and one round where they defended, meaning there can be ties\n\n"
index 98e5af9709ae48a696b94aa65fccc45422dacdd4..20693b6460dd11e843a25a245f720cb29c0c1b80 100644 (file)
@@ -8,7 +8,7 @@ METHOD(mayhem, describe, string(mayhem this))
                "There are no pickups enabled on maps, but buffs are still available\n\n"
                "It shines in its unique handling of scoring, accouting for both frags but also damage dealt. "
                "This means that if you almost frag a player you will still be rewarded with points, but dealing the final blow is always better if possible. "
-               "Points are deducted when you walk into damage triggers, but not when you do movement tricks like blaster jumping since self damage is disabled\n\n"
+               "Points are deducted when you walk into hazards, but not when you do movement tricks like blaster jumping since self damage is disabled\n\n"
                "Since damage is always rewarded in %s, the more you shoot the better, turning this gamemode into chaotic fun at times"),
        COLORED_NAME(this), COLORED_NAME(this));
 }