mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
LINT: Switch whitelist check from egrep to awk
Bonus: make CI happy with the last rules fix
This commit is contained in:
parent
88b9b9652a
commit
3a90b78a03
6 changed files with 12 additions and 7 deletions
|
@ -212,8 +212,8 @@ int ModApiClient::l_sound_play(lua_State *L)
|
|||
if (!lua_isnil(L, -1)) {
|
||||
v3f pos = read_v3f(L, -1) * BS;
|
||||
lua_pop(L, 1);
|
||||
handle =
|
||||
sound->playSoundAt(spec.name, looped, gain * spec.gain, pos);
|
||||
handle = sound->playSoundAt(
|
||||
spec.name, looped, gain * spec.gain, pos);
|
||||
lua_pushinteger(L, handle);
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue