hedgewars/uAmmos.pas
changeset 13499 c41b16ac2e05
parent 13455 38814954a248
child 13854 ccfbc5f59c52
--- a/hedgewars/uAmmos.pas	Tue Jul 17 19:28:31 2018 +0200
+++ b/hedgewars/uAmmos.pas	Tue Jul 17 19:44:29 2018 +0200
@@ -160,7 +160,7 @@
 
 function GetAmmoByNum(num: LongInt): PHHAmmo;
 begin
-    if checkFails(num < StoreCnt, 'Invalid store number', true) then
+    if checkFails(num < StoreCnt, 'Invalid ammo store number', true) then
         GetAmmoByNum:= nil
     else
         GetAmmoByNum:= StoresList[num]