@@ -75,7 +75,7 @@ internal void CreatePrimaryRail(Block currentBlock, Block nextBlock, Vector3 pos
75
75
}
76
76
else
77
77
{
78
- Plugin . CurrentHost . CreateStaticObject ( ( StaticObject ) Structure . FormCL [ FormType ] , pos , RailTransformation , Transformation . NullTransformation , 0.0 , Properties ) ;
78
+ Plugin . CurrentHost . CreateStaticObject ( ( StaticObject ) Structure . FormCL [ FormType ] , pos , RailTransformation , Transformation . NullTransformation , Properties ) ;
79
79
}
80
80
81
81
if ( RoofType > 0 )
@@ -95,7 +95,7 @@ internal void CreatePrimaryRail(Block currentBlock, Block nextBlock, Vector3 pos
95
95
}
96
96
else
97
97
{
98
- Plugin . CurrentHost . CreateStaticObject ( ( StaticObject ) Structure . RoofCL [ RoofType ] , pos , RailTransformation , Transformation . NullTransformation , 0.0 , Properties ) ;
98
+ Plugin . CurrentHost . CreateStaticObject ( ( StaticObject ) Structure . RoofCL [ RoofType ] , pos , RailTransformation , Transformation . NullTransformation , Properties ) ;
99
99
}
100
100
}
101
101
}
@@ -116,7 +116,7 @@ internal void CreatePrimaryRail(Block currentBlock, Block nextBlock, Vector3 pos
116
116
}
117
117
else
118
118
{
119
- Plugin . CurrentHost . CreateStaticObject ( ( StaticObject ) Structure . FormCR [ FormType ] , pos , RailTransformation , Transformation . NullTransformation , 0.0 , Properties ) ;
119
+ Plugin . CurrentHost . CreateStaticObject ( ( StaticObject ) Structure . FormCR [ FormType ] , pos , RailTransformation , Transformation . NullTransformation , Properties ) ;
120
120
}
121
121
122
122
if ( RoofType > 0 )
@@ -136,7 +136,7 @@ internal void CreatePrimaryRail(Block currentBlock, Block nextBlock, Vector3 pos
136
136
}
137
137
else
138
138
{
139
- Plugin . CurrentHost . CreateStaticObject ( ( StaticObject ) Structure . RoofCR [ RoofType ] , pos , RailTransformation , Transformation . NullTransformation , 0.0 , Properties ) ;
139
+ Plugin . CurrentHost . CreateStaticObject ( ( StaticObject ) Structure . RoofCR [ RoofType ] , pos , RailTransformation , Transformation . NullTransformation , Properties ) ;
140
140
}
141
141
}
142
142
}
@@ -172,7 +172,7 @@ internal void CreatePrimaryRail(Block currentBlock, Block nextBlock, Vector3 pos
172
172
else
173
173
{
174
174
StaticObject FormC = ( StaticObject ) Structure . FormCL [ FormType ] . Transform ( d0 , d1 ) ;
175
- Plugin . CurrentHost . CreateStaticObject ( FormC , pos , RailTransformation , Transformation . NullTransformation , 0.0 , Properties ) ;
175
+ Plugin . CurrentHost . CreateStaticObject ( FormC , pos , RailTransformation , Transformation . NullTransformation , Properties ) ;
176
176
}
177
177
178
178
if ( RoofType > 0 )
@@ -193,7 +193,7 @@ internal void CreatePrimaryRail(Block currentBlock, Block nextBlock, Vector3 pos
193
193
else
194
194
{
195
195
StaticObject RoofC = ( StaticObject ) Structure . RoofCL [ RoofType ] . Transform ( d0 , d1 ) ;
196
- Plugin . CurrentHost . CreateStaticObject ( RoofC , pos , RailTransformation , Transformation . NullTransformation , 0.0 , Properties ) ;
196
+ Plugin . CurrentHost . CreateStaticObject ( RoofC , pos , RailTransformation , Transformation . NullTransformation , Properties ) ;
197
197
}
198
198
}
199
199
}
@@ -215,7 +215,7 @@ internal void CreatePrimaryRail(Block currentBlock, Block nextBlock, Vector3 pos
215
215
else
216
216
{
217
217
StaticObject FormC = ( StaticObject ) Structure . FormCR [ FormType ] . Transform ( d0 , d1 ) ;
218
- Plugin . CurrentHost . CreateStaticObject ( FormC , pos , RailTransformation , Transformation . NullTransformation , 0.0 , Properties ) ;
218
+ Plugin . CurrentHost . CreateStaticObject ( FormC , pos , RailTransformation , Transformation . NullTransformation , Properties ) ;
219
219
}
220
220
221
221
if ( RoofType > 0 )
@@ -236,7 +236,7 @@ internal void CreatePrimaryRail(Block currentBlock, Block nextBlock, Vector3 pos
236
236
else
237
237
{
238
238
StaticObject RoofC = ( StaticObject ) Structure . RoofCR [ RoofType ] . Transform ( d0 , d1 ) ;
239
- Plugin . CurrentHost . CreateStaticObject ( RoofC , pos , RailTransformation , Transformation . NullTransformation , 0.0 , Properties ) ;
239
+ Plugin . CurrentHost . CreateStaticObject ( RoofC , pos , RailTransformation , Transformation . NullTransformation , Properties ) ;
240
240
}
241
241
}
242
242
}
0 commit comments