fix issue with block placement
This commit is contained in:
@@ -52,3 +52,13 @@ class AirBlock(Block):
|
||||
|
||||
def __init__(self, x: int, y: int):
|
||||
super().__init__(x, y)
|
||||
|
||||
|
||||
class WaterBlock(Block):
|
||||
id = 'water'
|
||||
color = COLORS.get(id)
|
||||
flowable = True
|
||||
collision = False
|
||||
|
||||
def __init__(self, x: int, y: int):
|
||||
super().__init__(x, y)
|
||||
Reference in New Issue
Block a user