Set belt speed to 1
This commit is contained in:
parent
1acc7a749b
commit
072352dbd8
|
@ -1,4 +1,9 @@
|
|||
---------------------------------------------------------------------------------------------------
|
||||
Version: 1.1.1
|
||||
Date: 25.08.2023
|
||||
Bugfixes:
|
||||
- Belts require a positive speed
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 1.1.0
|
||||
Date: 16.01.2021
|
||||
Features:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Baseless",
|
||||
"version": "1.1.0",
|
||||
"version": "1.1.1",
|
||||
"title": "Baseless",
|
||||
"description": "Defines missing prototypes required to launch the game.",
|
||||
"author": "David Skrundz",
|
||||
|
|
|
@ -28,7 +28,7 @@ local AnimationSet =
|
|||
Baseless.Make.TransportBeltConnectable = function (type, name, prototype, conditions)
|
||||
return Baseless.Make.EntityWithHealth(type, name, Merge(
|
||||
{
|
||||
speed = 0,
|
||||
speed = 1,
|
||||
belt_animation_set = AnimationSet,
|
||||
collision_box = Baseless.Data.BoundingBox,
|
||||
tile_width = 1,
|
||||
|
|
Loading…
Reference in New Issue