clean code

This commit is contained in:
Maciej Kasatkin 2012-09-15 21:49:16 +02:00
parent 80b5f39b63
commit 2bd039c0fe
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ function break_node (pos,n_param)
pos2.z=pos.z
--param2 3=x+ 1=x- 2=z+ 0=z-
if n_param==3 then print ("sru") pos2.x=pos2.x+1 pos1.x=pos1.x-1 end
if n_param==3 then pos2.x=pos2.x+1 pos1.x=pos1.x-1 end
if n_param==2 then pos2.z=pos2.z+1 pos1.z=pos1.z-1 end
if n_param==1 then pos2.x=pos2.x-1 pos1.x=pos1.x+1 end
if n_param==0 then pos2.z=pos2.z-1 pos1.x=pos1.z+1 end