Changes

m
Replace deprecated <source> tags with <syntaxhighlight> tags; add new template Template:Modder compatibility header
Line 1: Line 1:  
←[[Modding:Index|Index]]
 
←[[Modding:Index|Index]]
   −
'''This page is for modders. Players: see [[Modding:Mod compatibility]] instead.'''
+
{{Modder compatibility header}}
 
   
This page explains how to update your mods for compatibility with Stardew Valley 1.3.
 
This page explains how to update your mods for compatibility with Stardew Valley 1.3.
   Line 12: Line 11:  
===Custom map tilesheets===
 
===Custom map tilesheets===
 
If you use <tt>Action: Load</tt> to provide a custom tilesheet for a map, make sure it's in the <tt>Maps</tt> folder. For example:
 
If you use <tt>Action: Load</tt> to provide a custom tilesheet for a map, make sure it's in the <tt>Maps</tt> folder. For example:
<source lang="javascript">
+
<syntaxhighlight lang="javascript">
 
// incorrect
 
// incorrect
 
"Target": "Tilesheet"
 
"Target": "Tilesheet"
Line 18: Line 17:  
// correct
 
// correct
 
"Target": "Maps/Tilesheet"
 
"Target": "Maps/Tilesheet"
</source>
+
</syntaxhighlight>
    
===Mine tilesheets===
 
===Mine tilesheets===
114

edits