Re: So I'm an idiot... Gun Round Errors
Your order is backwards. It is
Code:
AddAmmo = Magazine
...
AddAmmo = Round
...
AddAmmo = TDExplosive
...
when it should be
Code:
AddAmmo = TDExplosive
...
AddAmmo = Round
...
AddAmmo = Magazine
...
What is going on is the Magazine is trying to make a call to the Round info that has not been defined yet.