Re: [Question]How can i disable the Nevit's Blessing window?
Posted: Mon Jun 03, 2013 10:47 pm
Uh. You would have to put like 10-20k instance checks at least, to get any measurable performance change. True, best way is to do stuff the best, optimal way. But lets not get paranoid about little stuff like this... Its like arguing if "if (sth) return sth; else return sth_else;" will be (measurable) slower than "if (sth) return sth; return sth_else;".It's pretty hard to do an impact on performance with things like this. Unless you put it eg. in 20k loop (actually I'm not sure, if only 20k will still be enough) xDOkari wrote:Well, if you want to deactivate Nevit's Blessing and get rid of the window, you kinda have to.UnAfraid wrote:I wouldn't even touch it.
While it is true that you might not notice it in that case, it is still important to avoid such things. Because developing software (especially servers) with that logic will lead to poor program performance.Szponiasty wrote:It doesn't do any noticeable difference
Negligible impact + negligible impact + negligible impact + ... = noticeable impact.
On the other hand, removing some code, to disable sth isn't best way to do it too. Especially if in the future, someone else will work on code, or yourself will need to turn this back on. Easy way to miss adding back, sth you removed = adding bugs
