Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ CanGoIntoAmmoOnPickup()

bool Terraria.Player.CanGoIntoAmmoOnPickup ( Item theSlot,
Item theItemToAccept )
inline

Definition at line 37038 of file Player.cs.

37039 {
37040 if (!theItemToAccept.CanFillEmptyAmmoSlot() && theSlot.type == 0)
37041 {
37042 return false;
37043 }
37045 }
bool CanItemSlotAccept(Item theSlot, Item theItemToAccept)
Definition Player.cs:37025