chad html

2021-06-18 01:57:09 +00:00
parent 986bc2289c
commit aa11fbc9bd

15
Tips.md

@ -1 +1,14 @@
* In the Ren'py SDK, there is a button called "check script", it's a simple lint error checker that combs through the code and makes sure everything works. Use it whenever possible to avoid introducing new bugs!
<ul>
<li>In the Ren'py SDK, there is a button called "check script", it's a simple lint error checker that combs through the code and makes sure everything works. Use it whenever possible to avoid introducing new bugs!
<li>Apply one of the following to the beginning of a PR to automatically close an issue with the merging of said PR:
<ul>
<li>fixes #1</li>
<li>Fixes #1</li>
<li>Closes #1</li>
<li>closes #1</li>
<li>fixes: #1</li>
<li>Fixes: #1</li>
<li>Closes: #1</li>
<li>closes: #1</li>
</ul>
<p>Remember to replace '1' with the number of the issue you want to close!</p>