Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
LiquidPlacementModule.cs
Go to the documentation of this file.
2
3namespace Terraria.Modules;
4
6{
8
10
12 {
13 if (copyFrom == null)
14 {
15 water = LiquidPlacement.Allowed;
16 lava = LiquidPlacement.Allowed;
17 }
18 else
19 {
20 water = copyFrom.water;
21 lava = copyFrom.lava;
22 }
23 }
24}
LiquidPlacementModule(LiquidPlacementModule copyFrom=null)