tModPorter icon indicating copy to clipboard operation
tModPorter copied to clipboard

A tool to port tML mods from 1.3 to 1.4, you must have tML 1.4 installed

Results 2 tModPorter issues
Sort by recently updated
recently updated
newest added

In 1.4, textures/fonts/stuff was moved from main to other places - Textures: now `Terraria.GameContent.TextureAssets` - Fonts: `Terraria.GameContent.FontAssets` - Other things are also inside `Terraria.GameContent`

1.4 changed the way it declares buff immunity on npcs: ```cs //Don't set immunities like this as of 1.4: NPC.buffImmune[BuffID.Confused] = true; immunities are handled via dictionaries through NPCID.Sets.DebuffImmunitySets ```...