--- a/LuaGameplay.wiki Sun Sep 08 22:11:12 2019 +0100
+++ b/LuaGameplay.wiki Mon Sep 16 16:49:13 2019 +0100
@@ -139,6 +139,8 @@
This function returns four numbers, in this order: initial ammo count, probability, delay and number in crate. These values correspond to the parameters 2-5 provided in `SetAmmo` and have the same meaning.
+The `delay` has a special case. If `delay` is 10000 or greater, then this means you're in the hedgehog placement phase. To get the “true” delay (after the placement phase is over), you must subtract 10000 from this value.
+
Example:
<code language="lua">count, prob, delay, numberInCrate = GetAmmo(amGrenade) -- Get ammo settings of amGrenade</code>