]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Specify command bound to default key in some messages (helpful in case player has...
authorterencehill <piuntn@gmail.com>
Tue, 23 Apr 2019 15:28:33 +0000 (17:28 +0200)
committerterencehill <piuntn@gmail.com>
Tue, 23 Apr 2019 15:28:33 +0000 (17:28 +0200)
qcsrc/common/mutators/mutator/hook/sv_hook.qc
qcsrc/common/mutators/mutator/nades/nades.qc
qcsrc/common/mutators/mutator/offhand_blaster/sv_offhand_blaster.qc

index c3967811973a9ec009bbe17d120a0be38f86387d..c6a595363c3a272f64b4a4e0f89de37c7e94e9c6 100644 (file)
@@ -32,7 +32,7 @@ MUTATOR_HOOKFUNCTION(hook, BuildMutatorsPrettyString)
 
 MUTATOR_HOOKFUNCTION(hook, BuildGameplayTipsString)
 {
-    M_ARGV(0, string) = strcat(M_ARGV(0, string), "\n\n^3grappling hook^8 is enabled, press 'e' to use it\n");
+    M_ARGV(0, string) = strcat(M_ARGV(0, string), "\n\n^3grappling hook^8 is enabled, press 'e' (+hook) to use it\n");
 }
 
 MUTATOR_HOOKFUNCTION(hook, SetStartItems)
index b6c4578d59fc6d32f265506ffb577f5da587a2d8..484aaddcdadc86a8cc9a72fecdd47799f9650747 100644 (file)
@@ -1551,7 +1551,7 @@ MUTATOR_HOOKFUNCTION(nades, BuildMutatorsString)
 
 MUTATOR_HOOKFUNCTION(nades, BuildGameplayTipsString)
 {
-       M_ARGV(0, string) = strcat(M_ARGV(0, string), "\n\n^3nades^8 are enabled, press 'g' to use them\n");
+       M_ARGV(0, string) = strcat(M_ARGV(0, string), "\n\n^3nades^8 are enabled, press 'g' (dropweapon) to use them\n");
 }
 
 #endif
index 3a10055fe5419e0f52c855f91edb0066ba170718..fbffa8a439cd241d5977bde45d876661fdcb9c7e 100644 (file)
@@ -16,7 +16,7 @@ MUTATOR_HOOKFUNCTION(offhand_blaster, BuildMutatorsPrettyString)
 
 MUTATOR_HOOKFUNCTION(offhand_blaster, BuildGameplayTipsString)
 {
-    M_ARGV(0, string) = strcat(M_ARGV(0, string), "\n\n^3offhand blaster^8 is enabled, press 'e' to use it\n");
+    M_ARGV(0, string) = strcat(M_ARGV(0, string), "\n\n^3offhand blaster^8 is enabled, press 'e' (+hook) to use it\n");
 }
 
 MUTATOR_HOOKFUNCTION(offhand_blaster, PlayerSpawn)