Removed silly "==0" to check if "apply deform" should happen.

I'm just binary flipped...
This commit is contained in:
Ton Roosendaal 2004-11-08 19:20:59 +00:00
parent 0eb05b9d25
commit c20b7adec6

@ -2872,7 +2872,7 @@ void apply_object()
make_duplilist_real();
}
else {
if(okee("Apply deformation")==0) {
if(okee("Apply deformation")) {
object_apply_deform(ob);
BIF_undo_push("Apply deformation");
}