-
Notifications
You must be signed in to change notification settings - Fork 6
Cherry picks: hud_get_flags and hud_set_flags #73
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
Open
SwissalpS
wants to merge
16
commits into
S-S-X:master
Choose a base branch
from
SwissalpS:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 12 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
caa2857
Add Dockerfile
S-S-X f230964
hud_get_flags and hud_set_flags
SwissalpS 5db6ab8
hud_get_flags and hud_set_flags
SwissalpS 41dfe3b
oops
SwissalpS 75a5f36
oops
SwissalpS 0671d7d
add Player:set_eye_offset
SwissalpS aa9cb70
add vector.zero and .copy
SwissalpS 7789cc2
get/set_nametag_attributes
SwissalpS 062617f
attach methods
SwissalpS 21b1663
minimal player_api mod support
SwissalpS 4c5a698
Merge pull request #1 from SwissalpS/morePlayer
SwissalpS ae7eaa2
remove debug lines
SwissalpS d50de72
undo newer functions
SwissalpS 8c4a3a7
use fixture in the few mods that use [player_api]
SwissalpS cabe2ac
adding player breath
SwissalpS 2d37a44
Update player.lua
SwissalpS File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| FROM alpine:latest as build | ||
| USER root | ||
| ENV USER=root | ||
| RUN apk add --no-cache build-base git lua-dev luarocks5.1 lua5.1-sec | ||
| RUN luarocks-5.1 install luasocket | ||
| RUN luarocks-5.1 install luacov | ||
| RUN luarocks-5.1 install busted 2.0.0-1 | ||
| RUN luarocks-5.1 install --server https://luarocks.org/dev mineunit | ||
|
|
||
| # Mineunit base | ||
| FROM alpine:latest | ||
| COPY --from=build /usr/local /usr/local | ||
| RUN adduser -D mineunit | ||
| RUN apk add --no-cache lua5.1 | ||
|
|
||
| # Alpine is fine but image size could still be optimized if needed | ||
| #RUN rm -rf /var/cache/apk | ||
| #FROM scratch | ||
| #COPY --from=mineunit / / | ||
|
|
||
| USER mineunit | ||
| WORKDIR /home/mineunit | ||
| #ENTRYPOINT ["mineunit"] | ||
| ENTRYPOINT ["sh", "-l"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.