Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating from Neb dev. #38

Merged
merged 36 commits into from
Aug 13, 2024
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
df71d79
Replace CEILING macro with 515 ceil proc
out-of-phaze Aug 7, 2024
d5bf2b1
Replace FLOOR macro with 515 floor proc
out-of-phaze Aug 7, 2024
cbe9beb
Food can now skip plate creation.
MistakeNot4892 Aug 9, 2024
25743bd
Replace misc. rounding macros with 515 ceil and trunc procs
out-of-phaze Aug 7, 2024
a4c5b30
Change produce bin to use seed product name as a key
out-of-phaze Aug 8, 2024
dc20e86
Stock should now take precedence over soup, which takes precedence ov…
MistakeNot4892 Aug 10, 2024
77958cf
Converts ITEM_SIZE_NO_CONTAINER to OBJ_FLAG_NO_STORAGE.
MistakeNot4892 Aug 10, 2024
e16d779
Updating sound environments for porches.
MistakeNot4892 Aug 10, 2024
92a1db7
Updating keys for Shaded Hills jobs.
MistakeNot4892 Aug 10, 2024
c77739a
Updating Shaded Hills inn map.
MistakeNot4892 Aug 10, 2024
6cb8ee8
Sticks can be used to pick locks.
MistakeNot4892 Aug 10, 2024
12e0ddb
Adding a signpost to despawn from Shaded Hills.
MistakeNot4892 Aug 10, 2024
b3104dd
Merge pull request #4315 from MistakeNot4892/fix/plates
out-of-phaze Aug 10, 2024
9f4b3d7
Separates solid and liquid reagents
NataKilar Jun 30, 2024
cb890ad
Fixes in world in comment
NataKilar Jul 28, 2024
d911e69
Addresses requested fluid changes
NataKilar Aug 10, 2024
d3a8be3
Fixes use of ceiling proc
NataKilar Aug 11, 2024
4c41135
Automatic changelog generation [ci skip]
NebulaSS13Bot Aug 11, 2024
77c0bf2
Merge pull request #4303 from out-of-phaze/codequality/FLOOR-CEILING
MistakeNot4892 Aug 11, 2024
f7ecbb7
Merge pull request #4317 from out-of-phaze/tweak/produce-bin-product
MistakeNot4892 Aug 11, 2024
387d66d
Automatic changelog generation [ci skip]
NebulaSS13Bot Aug 12, 2024
43494f1
Merge pull request #4321 from MistakeNot4892/feature/signpost
out-of-phaze Aug 12, 2024
d311a5b
Merge pull request #4318 from MistakeNot4892/fix/souporder
out-of-phaze Aug 12, 2024
7434db4
Merge pull request #4267 from NataKilar/solid-liquid-reagents
MistakeNot4892 Aug 12, 2024
510a186
Automatic changelog generation for PR #4267 [ci skip]
NebulaSS13Bot Aug 12, 2024
86bd2f9
Failing to pick a lock will damage the pick instead of permanently de…
MistakeNot4892 Aug 11, 2024
471b789
Fixes a tail runtime.
MistakeNot4892 Aug 11, 2024
9f92e44
Make cooking recipes that use stacks not consume the entire stack for…
out-of-phaze Aug 10, 2024
cc08f67
Beggar knights can take max weapon skill.
MistakeNot4892 Aug 10, 2024
822bc33
Adds a windup to AI-driven unarmed human attacks.
MistakeNot4892 Aug 11, 2024
be6ecf4
Adding skill checks and damage to shields.
MistakeNot4892 Aug 11, 2024
7fb573d
Refactor handle_flashed to not require a flash object
noelle-lavenza Aug 11, 2024
afe3f1f
Make mud turf drying probabilistic
noelle-lavenza Aug 11, 2024
cb6b21f
Add an owned subtype of fake fire
noelle-lavenza Aug 11, 2024
b4d82dd
Automatic changelog generation for PR #4328 [ci skip]
NebulaSS13Bot Aug 12, 2024
2b1a965
Merge branch 'dev' of github.com:NebulaSS13/Nebula into fork/pyrelight
MistakeNot4892 Aug 13, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixes use of ceiling proc
  • Loading branch information
NataKilar committed Aug 11, 2024
commit d3a8be3a50abe470832fe674143565290c3a6130
2 changes: 1 addition & 1 deletion code/modules/materials/material_debris.dm
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

// Safety check, although this should be prevented for player side interactions
if(total_matter > MAX_SCRAP_MATTER)
var/divisor = CEILING(total_matter / MAX_SCRAP_MATTER)
var/divisor = ceil(total_matter / MAX_SCRAP_MATTER)
var/list/matter_per_pile = list()

for(var/mat in matter)
Expand Down