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

Anomalies and Waste from Monke1 #4393

Merged
merged 22 commits into from
Dec 1, 2024
Merged
Changes from 1 commit
Commits
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
Update anomalies_frost.dm
  • Loading branch information
ThePooba committed Nov 29, 2024
commit aecbf95a0cee10625f9e869e39efad68f289b5ad
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@
continue
else
valid_turfs |= searched_turfs
for(var/i = 1, i <= rand(MIN_REPLACEMENT, MAX_REPLACEMENT), i++) //Replace 2-7 tiles with snow
for(var/i = 1, to min(rand(MIN_REPLACEMENT, MAX_REPLACEMENT), length(valid_turfs)))//Replace 2-7 tiles with snow

Check failure on line 34 in monkestation/code/game/objects/effects/anomalies/anomalies_frost.dm

View workflow job for this annotation

GitHub Actions / Run Linters

got 'min', expected one of: '(', operator, field access, ',', ';', ')'

Check failure on line 34 in monkestation/code/game/objects/effects/anomalies/anomalies_frost.dm

View workflow job for this annotation

GitHub Actions / Run Linters

OD0011: Expected 2nd expression in for

Check failure on line 34 in monkestation/code/game/objects/effects/anomalies/anomalies_frost.dm

View workflow job for this annotation

GitHub Actions / Run Linters

OD0001: Expected ')' in for after expression 2

Check failure on line 34 in monkestation/code/game/objects/effects/anomalies/anomalies_frost.dm

View workflow job for this annotation

GitHub Actions / Run Linters

OD0015: Expected body or statement

Check failure on line 34 in monkestation/code/game/objects/effects/anomalies/anomalies_frost.dm

View workflow job for this annotation

GitHub Actions / Run Linters

OD0001: Expected end of proc statement
var/turf/searched_turfs = pick(valid_turfs)

Check failure on line 35 in monkestation/code/game/objects/effects/anomalies/anomalies_frost.dm

View workflow job for this annotation

GitHub Actions / Run Linters

OD0001: Expected end of proc statement
if(searched_turfs)

Check failure on line 36 in monkestation/code/game/objects/effects/anomalies/anomalies_frost.dm

View workflow job for this annotation

GitHub Actions / Run Linters

OD0404: Unknown identifier "searched_turfs"
if(istype(searched_turfs, /turf/open/floor/plating))

Check failure on line 37 in monkestation/code/game/objects/effects/anomalies/anomalies_frost.dm

View workflow job for this annotation

GitHub Actions / Run Linters

OD0404: Unknown identifier "searched_turfs"
searched_turfs.PlaceOnTop(/turf/open/floor/iron/snowed)

Check failure on line 38 in monkestation/code/game/objects/effects/anomalies/anomalies_frost.dm

View workflow job for this annotation

GitHub Actions / Run Linters

OD0404: Unknown identifier "PlaceOnTop"
else
searched_turfs.ChangeTurf(/turf/open/floor/iron/snowed)

Check warning on line 40 in monkestation/code/game/objects/effects/anomalies/anomalies_frost.dm

View workflow job for this annotation

GitHub Actions / Run Linters

OD0000: Error recovery had to skip to monkestation/code/game/objects/effects/anomalies/anomalies_frost.dm:42:1

Check failure on line 40 in monkestation/code/game/objects/effects/anomalies/anomalies_frost.dm

View workflow job for this annotation

GitHub Actions / Run Linters

OD0404: Unknown identifier "ChangeTurf"

/obj/effect/anomaly/frost/detonate()
//The station holds its breath, waiting for whatever the end will bring.
Expand Down
Loading