ioncodes / dnpatch

.NET Patcher library using dnlib
MIT License
313 stars 48 forks source link

Fixed instruction creation code breaking for multiple instructions. #11

Closed 0megaD closed 7 years ago

0megaD commented 7 years ago

If it ain't First.First it breaks. :')

0megaD commented 7 years ago

The build is failing because the master branch still has this broken line in there from my accepted broken pull request lol:

Script.cs -> if (instructions[0]["opcode"] != null && instructions[0]["operand"] != "") should be if (instructions[0]["opcode"] != null && instructions[0]["operand"] != null)

The code in this pull request is working fine.

ioncodes commented 7 years ago

Thanks!