Various bug fixes

This commit is contained in:
simon
2017-11-05 14:13:53 -05:00
parent 626c55bcce
commit 98b0c480b9
19 changed files with 145 additions and 68 deletions

View File

@@ -18,14 +18,9 @@ org_offset=1024
stack_bottom=32768
# Size of the memory in bytes
memory_size=65536
# The game server will process the new user every 'new_user_interval' ticks
new_user_interval=10
# todo set to 10^
# Initial location of new user's controlled unit
new_user_worldX = 0
new_user_worldY = 0
# Effect when the new user's controlled unit spawns
new_user_effect=WARNING
# Default user code
new_user_code=; Welcome to Much Assembly required!\n\
; You will find useful information on the game here: https://github.com/simon987/Much-Assembly-Required/wiki\n\
@@ -35,7 +30,6 @@ new_user_code=; Welcome to Much Assembly required!\n\
# Default held item
new_user_item=0
# ----------------------------------------------
# Biomass units yield for a plant
plant_yield=2
# Grow time in ticks for a plant to grow
@@ -45,20 +39,6 @@ minTreeCount=3
# Maximum tree count for the WorldGenerator
maxTreeCount=10
# ----------------------------------------------
#Number of ticks of cooking for 1 unit of biomass
biomass_fuel_value=32
#Number of ticks required to cook iron (1-255)
iron_cook_time=8
#Number of ticks required to cook copper (1-255)
copper_cook_time=8
# Hit points of the Tortoise GameObject
tortoise_hp=10
# Number of biomass parts required to make a biogas unit
# The number of biomass units required to make a biogas unit=
# biomass_cost / biomass_fuel_value
biogas_cost=48
# ----------------------------------------------
# Minimum center point count for the WorldGenerator
wg_centerPointCountMin=5
# Maximum center point count for the WorldGenerator
@@ -66,14 +46,13 @@ wg_centerPointCountMax=15
# Wall/Plain tile ratio for the WorldGenerator
wg_wallPlainRatio=4
# Minimum iron tiles count for the WorldGenerator
wg_minIronCount=1
wg_minIronCount=0
# Minimum iron tile count for the WorldGenerator
wg_maxIronCount=3
wg_maxIronCount=2
# Minimum copper tile count for the WorldGenerator
wg_minCopperCount=1
wg_minCopperCount=0
# Maximum copper tile count for the WorldGenerator
wg_maxCopperCount=3
wg_maxCopperCount=2
# ----------------------------------------------
# Maximum execution time of user code in ms
user_timeout=40