1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-01-06 00:23:49 +02:00

mini fixes

This commit is contained in:
hanakocz 2020-04-10 01:29:49 +02:00
parent 12f826762a
commit fc1148def2
3 changed files with 7 additions and 7 deletions

View File

@ -180,7 +180,7 @@ local function hidden_biter(entity)
if math_random(1, 64) == 1 then
BiterHealthBooster.add_boss_unit(unit, m * 15 + 1, 0.38)
else
BiterHealthBooster.add_unit(unit, m * 2.5 + 1)
BiterHealthBooster.add_unit(unit, m * 0.5 + 1)
end
end
@ -191,7 +191,7 @@ end
local function hidden_biter_pet(event)
if math_random(1, 2048) ~= 1 then return end
BiterRolls.wave_defense_set_unit_raffle(math.sqrt(event.entity.position.x ^ 2 + event.entity.position.y ^ 2) * 0.20)
BiterRolls.wave_defense_set_unit_raffle(math.sqrt(event.entity.position.x ^ 2 + event.entity.position.y ^ 2) * 0.25)
local unit
if math_random(1,3) == 1 then
unit = event.entity.surface.create_entity({name = BiterRolls.wave_defense_roll_spitter_name(), position = event.entity.position})
@ -434,9 +434,9 @@ local function tick()
local wave_defense_table = WD.get_table()
wave_defense_table.spawn_position = position
end
--if tick % 216000 == 0 then
-- Collapse.delete_out_of_map_chunks(surface)
--end
-- if tick % 216000 == 0 then
-- Collapse.delete_out_of_map_chunks(surface)
-- end
if global.offline_loot then
offline_players()
end

View File

@ -302,7 +302,7 @@ local function addunits(group, source_player)
end
local function forcemove(group, source_player)
group.force_move()
group.start_moving()
flying_text(nil, 1, group.position, source_player)
end

View File

@ -14,7 +14,7 @@ local function on_entity_damaged(event)
local ammo = player.get_inventory(defines.inventory.character_ammo)[player.selected_gun_index]
if not weapon.valid_for_read or not ammo.valid_for_read then return end
if weapon.name ~= "pistol" then return end
if ammo.name ~= "firearm-magazine" and ammo ~= "piercing-rounds-magazine" and ammo ~= "uranium-rounds-magazine" then return end
if ammo.name ~= "firearm-magazine" and ammo.name ~= "piercing-rounds-magazine" and ammo.name ~= "uranium-rounds-magazine" then return end
event.entity.damage(event.final_damage_amount * 4, player.force, "physical")
end