Fix produce command start

This commit is contained in:
Anton Vakhrushev 2019-10-15 15:25:23 +03:00
parent bcb5b96138
commit 52607c48dd

View File

@ -33,6 +33,9 @@ module Game
if @building.restoration
world.push(RestoreCommand.new(@point))
end
if @building.production
world.push(ProduceCommand.new(@point))
end
end
end