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

◆ useIronBar()

bool Terraria.Recipe.useIronBar ( int invType,
int reqType )
inline

Definition at line 366 of file Recipe.cs.

367 {
368 if (!anyIronBar)
369 {
370 return false;
371 }
372 if (reqType != 22 && reqType != 704)
373 {
374 return false;
375 }
376 if (invType != 22 && invType != 704)
377 {
378 return false;
379 }
380 return true;
381 }
bool anyIronBar
Definition Recipe.cs:47

References Terraria.Recipe.anyIronBar.

Referenced by Terraria.Recipe.CollectGuideRecipes(), and Terraria.Recipe.Create().